Skip to content

update-source-stateful-resources #338

update-source-stateful-resources

update-source-stateful-resources #338

# ~~ Generated by projen. To modify, edit .projenrc.ts and run "npx projen".
name: update-source-stateful-resources
on:
workflow_dispatch: {}
schedule:
- cron: 11 3 * * 1-5
jobs:
update_source:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: none
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Set git identity
run: |-
git config user.name "github-actions"
git config user.email "github-actions@github.com"
- name: Install dependencies
run: yarn install --check-files --frozen-lockfile
- name: update-source:stateful-resources
run: npx projen update-source:stateful-resources
- name: Create Pull Request
id: create-pr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
commit-message: |-
feat(sources): update stateful-resources
> ⚠️ This Pull Request updates daily and will overwrite **all** manual changes pushed to the branch
Updates the stateful-resources source from upstream. See details in [workflow run].
[Workflow Run]: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
------
*Automatically created by projen via the "update-source-stateful-resources" workflow*
branch: update-source/stateful-resources
base: main
title: "feat(sources): update stateful-resources"
labels: auto-approve
body: |-
> ⚠️ This Pull Request updates daily and will overwrite **all** manual changes pushed to the branch
Updates the stateful-resources source from upstream. See details in [workflow run].
[Workflow Run]: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
------
*Automatically created by projen via the "update-source-stateful-resources" workflow*
author: github-actions <github-actions@github.com>
committer: github-actions <github-actions@github.com>
signoff: true
- name: add-instructions
if: ${{ steps.create-pr.outputs.pull-request-number }}
env:
GH_TOKEN: ${{ github.token }}
run: 'echo -e "**To work on this Pull Request, please create a new branch and PR. This prevents your work from being deleted by the automation.**\n\nRun the following commands inside the repo:\n\`\`\`console\ngh co ${{ steps.create-pr.outputs.pull-request-number }}\ngit switch -c fix-pr-${{ steps.create-pr.outputs.pull-request-number }} && git push -u origin HEAD\ngh pr create -t \"fix: PR #${{ steps.create-pr.outputs.pull-request-number }}\" --body \"Fixes ${{ steps.create-pr.outputs.pull-request-url }}\"\n\`\`\`"| gh pr comment ${{ steps.create-pr.outputs.pull-request-number }} -F-'