Skip to content

Commit ddc1f65

Browse files
committed
ci(main): remove unused checkExecution step
1 parent 649db2b commit ddc1f65

1 file changed

Lines changed: 1 addition & 24 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,8 @@ on:
1616
tags-ignore:
1717
- '**'
1818
jobs:
19-
checkExecution:
20-
runs-on: ubuntu-latest
21-
outputs:
22-
shouldExecute: ${{ steps.stepCheckExecution.outputs.shouldExecute }}
23-
steps:
24-
- name: Dump GitHub context
25-
run: |
26-
echo "::group::github context"
27-
echo "$GITHUB_CONTEXT"
28-
echo "::endgroup::"
29-
env:
30-
GITHUB_CONTEXT: ${{ toJson(github) }}
31-
- id: stepCheckExecution
32-
name: Check for execution
33-
uses: shiftcode/github-action-skip@v4.0.0
34-
with:
35-
skipOnCommitMsg: '[skip_build]'
36-
githubToken: ${{ secrets.GITHUB_TOKEN }}
3719
test:
3820
runs-on: ubuntu-latest
39-
needs: checkExecution
40-
# only execute if not skipped by commit message
41-
if: needs.checkExecution.outputs.shouldExecute == 'true'
4221
strategy:
4322
matrix:
4423
# Test with Node.js 24 and v25
@@ -67,9 +46,7 @@ jobs:
6746
permissions:
6847
contents: write
6948
packages: write
70-
needs: [checkExecution, test]
71-
# only execute if not skipped by commit message
72-
if: needs.checkExecution.outputs.shouldExecute == 'true'
49+
needs: test
7350
steps:
7451
# checkout branch
7552
- name: Checkout

0 commit comments

Comments
 (0)