Skip to content

Commit 0ec3346

Browse files
authored
Use typisttech/.github reuseable workflows (#5)
1 parent a51d862 commit 0ec3346

File tree

3 files changed

+42
-5
lines changed

3 files changed

+42
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Dependabot Auto-merge
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- main
7+
8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
10+
cancel-in-progress: true
11+
12+
permissions: {}
13+
14+
jobs:
15+
dependabot:
16+
permissions:
17+
contents: write
18+
pull-requests: write
19+
uses: typisttech/.github/.github/workflows/dependabot-auto-merge.yml@v2
20+
with:
21+
minor: true
22+
patch: true

.github/workflows/release-drafter.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Release Drafter
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches:
7+
- main
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref_name }}
11+
cancel-in-progress: true
12+
13+
permissions: {}
14+
15+
jobs:
16+
release-drafter:
17+
uses: typisttech/.github/.github/workflows/release-drafter.yml@v2
18+
permissions:
19+
contents: write
20+
pull-requests: read

.github/workflows/test.yml

-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ on:
1010
- main
1111
tags:
1212
- '**'
13-
paths-ignore:
14-
- .gitattributes
15-
- .gitignore
16-
- LICENSE
17-
- README.md
1813

1914
concurrency:
2015
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}

0 commit comments

Comments
 (0)