Skip to content

Commit 6dedd1e

Browse files
ci: Clean up jobs
1 parent 92f0caf commit 6dedd1e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
if: ${{ github.event_name == 'schedule' }}
2424
run: test -z $(git rev-list --after="1 month" ${{ github.sha }}) && echo "name=should_run::false" >> $GITHUB_OUTPUT
2525

26-
qa-main:
26+
qa:
2727
name: 🔹 QA
2828
needs:
2929
- check-date
@@ -34,7 +34,7 @@ jobs:
3434
name: 🔹 Publish
3535
needs:
3636
- check-date
37-
- qa-main
37+
- qa
3838
permissions:
3939
contents: write
4040
id-token: write

.github/workflows/pre-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ on:
1515
concurrency: pre-release
1616

1717
jobs:
18-
qa-main:
18+
qa:
1919
name: 🔹 QA
2020
uses: oliversalzburg/workflows/.github/workflows/qa-npm-package.yml@main
2121

2222
pre-release:
2323
if: github.ref_name == github.event.repository.default_branch
2424
name: 🔹 Publish
25-
needs: qa-main
25+
needs: qa
2626
permissions:
2727
contents: write
2828
id-token: write

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ on:
99
concurrency: release
1010

1111
jobs:
12-
qa-tag:
12+
qa:
1313
name: 🔹 QA
1414
uses: oliversalzburg/workflows/.github/workflows/qa-npm-package.yml@main
1515

1616
release:
1717
name: 🔹 Publish
18-
needs: qa-tag
18+
needs: qa
1919
permissions:
2020
contents: write
2121
id-token: write

0 commit comments

Comments
 (0)