Skip to content

Commit

Permalink
ci: auto sync dependencies to main
Browse files Browse the repository at this point in the history
  • Loading branch information
meza committed Aug 10, 2024
1 parent c6e576a commit fedfccb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/sync-deps-to-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Sync Deps to Main
on:
schedule:
- cron: '9 0 * * 4'

jobs:
sync-branches:
runs-on: ubuntu-latest
name: Syncing dependencies
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12
- name: Opening pull request
id: pull
uses: tretuna/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FROM_BRANCH: "dependency-update"
TO_BRANCH: "main"
PULL_REQUEST_TITLE: "chore: sync deps to main"
PULL_REQUEST_AUTO_MERGE_METHOD: "merge"

0 comments on commit fedfccb

Please sign in to comment.