Skip to content

Commit

Permalink
build: remove original github action workflows[skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiankrome0001 committed Dec 13, 2024
1 parent 4bdd44c commit d03c654
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 180 deletions.
158 changes: 0 additions & 158 deletions .github/actions/call/action.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/actions/notify/action.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/sync-fork.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: sync-fork
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch: { }
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- run: gh repo sync $REPOSITORY -b $BRANCH_NAME
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
BRANCH_NAME: ${{ github.ref_name }}
- uses: actions/checkout@v4
- name: fetch and push tags
shell: bash
run: |
git fetch --tags https://github.com/dagger/dagger
git push --tags
env:
BRANCH_NAME: ${{ github.ref_name }}


0 comments on commit d03c654

Please sign in to comment.