We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d54e96a commit 8d0c481Copy full SHA for 8d0c481
.github/workflows/self-action.yml
@@ -0,0 +1,23 @@
1
+name: "Test Self Action"
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
7
+env:
8
+ EXTRACTOR_REPOSITORY: advanced-security/codeql-extractor-iac
9
10
+jobs:
11
+ action-test:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: "Checkout"
16
+ uses: actions/checkout@v4
17
18
+ - name: "Run the action"
19
+ uses: ./
20
+ with:
21
+ token: ${{ secrets.GITHUB_TOKEN }}
22
+ extractor_repository: ${{ env.EXTRACTOR_REPOSITORY }}
23
0 commit comments