auto-commit #9476
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
# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen". | |
name: auto-commit | |
on: | |
schedule: | |
- cron: 0 */3 * * * | |
workflow_dispatch: {} | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Bump | |
run: echo $(date -Is) > commit.date | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.PROJEN_GITHUB_TOKEN }} | |
commit-message: "feat: auto commit to trigger new release" | |
branch: github-actions/auto-commit | |
title: "feat: auto commit to trigger new release" | |
labels: auto-approve |