Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Auto-update dependencies #2

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/update.yml
@@ -0,0 +1,22 @@
on:
schedule:
- cron: 0 0 * * *
pull_request:
types: [opened, synchronize, reopened, closed]
name: Cron
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Update packages
uses: technote-space/create-pr-action@v2
with:
GITHUB_TOKEN: ${{ secrets.PUSH_TOKEN }}
EXECUTE_COMMANDS: |
git submodule update --init
git -C yosys-src pull --ff origin master
COMMIT_MESSAGE: 'Update dependencies'
PR_BRANCH_PREFIX: 'update-deps/'
PR_BRANCH_NAME: '${PR_ID}'
PR_TITLE: 'Auto-update dependencies'
AUTO_MERGE_THRESHOLD_DAYS: 1
2 changes: 1 addition & 1 deletion yosys-src
Submodule yosys-src updated 134 files