Skip to content

Commit

Permalink
Merge pull request #15 from GitHubSecurityLab/copy-workflow
Browse files Browse the repository at this point in the history
Add copy workflow
  • Loading branch information
Alvaro Muñoz authored Feb 16, 2024
2 parents 7c3503e + 4e44444 commit 55ff6ff
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/copy-to-bughalla.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Copy to Bughalla

on: push

permissions:
contents: read

jobs:
copy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- run: gh auth setup-git
env:
GITHUB_TOKEN: ${{ secrets.BUGHALLA_TOKEN }}

- run: rm -rf .github/workflows/copy-to-bughalla.yml
- run: git remote add fork https://github.com/bughalla/codeql-actions
- run: git push fork master --force

0 comments on commit 55ff6ff

Please sign in to comment.