diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..55a61b1 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: saschpe diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0d04011 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: + - package-ecosystem: gradle + directory: "/" + schedule: + interval: weekly + - package-ecosystem: github-actions + directory: ".github/" + schedule: + interval: weekly diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 21bc4d3..ece3e9c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,10 +1,24 @@ name: Main -on: [push] + +on: + push: + branches: + - main + paths-ignore: + - .gitignore + - LICENSE + - README.md + pull_request: + branches: + - main concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true +permissions: + contents: read + jobs: spotless: runs-on: ubuntu-latest