diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml new file mode 100644 index 0000000..d337c93 --- /dev/null +++ b/.github/workflows/dependabot-auto-merge.yml @@ -0,0 +1,22 @@ +name: Dependabot Auto-merge + +on: + pull_request: + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} + cancel-in-progress: true + +permissions: {} + +jobs: + dependabot: + permissions: + contents: write + pull-requests: write + uses: typisttech/.github/.github/workflows/dependabot-auto-merge.yml@v2 + with: + minor: true + patch: true diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml new file mode 100644 index 0000000..0a87ac5 --- /dev/null +++ b/.github/workflows/release-drafter.yml @@ -0,0 +1,20 @@ +name: Release Drafter + +on: + workflow_dispatch: + push: + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ github.ref_name }} + cancel-in-progress: true + +permissions: {} + +jobs: + release-drafter: + uses: typisttech/.github/.github/workflows/release-drafter.yml@v2 + permissions: + contents: write + pull-requests: read diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2470610..1280b80 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,11 +10,6 @@ on: - main tags: - '**' - paths-ignore: - - .gitattributes - - .gitignore - - LICENSE - - README.md concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}