This repository has been archived by the owner on May 15, 2024. It is now read-only.
Dependabot Pull Request #148
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot Pull Request | |
on: | |
schedule: | |
- cron: "0 13 * * 1" | |
jobs: | |
productionPromotion: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: main | |
- name: Keep dependabot branch upto date | |
run: | | |
git fetch origin dependabot-changes:dependabot-changes | |
git reset --hard dependabot-changes | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
branch: dependabot-changes |