Skip to content

Commit 7aaa5b3

Browse files
committed
Ensure workflows only run on push, not release.
1 parent be98d00 commit 7aaa5b3

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/run-ebuild-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ name: Ebuild Tests
22

33
on:
44
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '*.*'
59
paths-ignore:
610
- 'README.md'
711
- 'LICENSE'
@@ -43,6 +47,10 @@ jobs:
4347
binpkgs
4448
4549
# Run the ebuild tests
46-
- uses: hacking-gentoo/action-ebuild-test@master
50+
- uses: hacking-gentoo/action-ebuild-test@next
4751
env:
4852
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
53+
with:
54+
auth_token: ${{ secrets.PR_TOKEN }}
55+
deploy_key: ${{ secrets.DEPLOY_KEY }}
56+
overlay_repo: MADhacking/overlay

.github/workflows/shellcheck.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,14 @@ name: Shellcheck
22

33
on:
44
push:
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '*.*'
59
paths-ignore:
610
- 'README.md'
711
- 'LICENSE'
812
- '.github/**'
9-
# tags-ignore:
10-
# - '*.*'
1113

1214
jobs:
1315
tests:

0 commit comments

Comments
 (0)