Skip to content

Commit

Permalink
Create autoupdate.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
RaSan147 authored Sep 15, 2023
1 parent c8b346e commit 11679ff
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/autoupdate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: autoupdate
on:
# This will trigger on all pushes to all branches.
# push: {}
# Alternatively, you can only trigger if commits are pushed to certain branches, e.g.:
push:
branches:
- main
# - unstable
jobs:
autoupdate:
name: autoupdate
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: |
git checkout for_repl
git rebase master
git push <origin> for_repl
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

0 comments on commit 11679ff

Please sign in to comment.