Skip to content

Commit

Permalink
Merge pull request #38 from NUS-Fintech-Society/feature/TAS-17-routing
Browse files Browse the repository at this point in the history
add workflow to auto update feature branches after merging to main
  • Loading branch information
gnimnix authored Mar 16, 2024
2 parents 3b72f22 + 6f92fe8 commit 4dcfa16
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/autoupdate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
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.:
branches:
- main

jobs:
autoupdate:
name: autoupdate
runs-on: ubuntu-22.04
steps:
- uses: docker://chinthakagodawita/autoupdate-action:v1
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
DRY_RUN: "true"
PR_FILTER: "labelled"
PR_LABELS: "epic"

0 comments on commit 4dcfa16

Please sign in to comment.