Skip to content

Commit 55ff6ff

Browse files
author
Alvaro Muñoz
authored
Merge pull request #15 from GitHubSecurityLab/copy-workflow
Add copy workflow
2 parents 7c3503e + 4e44444 commit 55ff6ff

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Copy to Bughalla
2+
3+
on: push
4+
5+
permissions:
6+
contents: read
7+
8+
jobs:
9+
copy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- run: gh auth setup-git
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.BUGHALLA_TOKEN }}
17+
18+
- run: rm -rf .github/workflows/copy-to-bughalla.yml
19+
- run: git remote add fork https://github.com/bughalla/codeql-actions
20+
- run: git push fork master --force

0 commit comments

Comments
 (0)