Fetch references #553
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: Fetch references | |
on: | |
schedule: | |
# At 7:00 EST (12:00 UTC) on every day-of-week from Monday through Friday. https://crontab.guru/#0_12_*_*_1-5 | |
- cron: "0 12 * * 1-5" | |
workflow_dispatch: | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
fetch-references: | |
runs-on: ubuntu-latest | |
if: github.repository == 'bufbuild/modules' | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a | |
with: | |
app_id: 295926 | |
private_key: ${{ secrets.TOKEN_EXCHANGE_GH_APP_PRIVATE_KEY }} | |
permissions: >- | |
{"contents": "write", "pull_requests": "write", "members": "read"} | |
- name: Checkout repository code | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.23.x | |
check-latest: true | |
cache: true | |
- name: Install buf cli | |
run: | | |
go install github.com/bufbuild/buf/cmd/buf@latest | |
- name: Fetch references | |
run: | | |
bash ./scripts/fetch.sh | |
env: | |
BUF_TOKEN: ${{ secrets.BUF_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create PR | |
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f | |
with: | |
add-paths: ./modules/sync/** | |
commit-message: "Detected new managed modules references" | |
# This branch is ignored for the 'buf-ci.yaml' action. Keep this branch name synced there. | |
branch: fetch-modules | |
delete-branch: true | |
title: "Found new managed modules references" | |
body: | | |
New managed modules references found. Please review. | |
- [ ] `googlecloudplatform/bq-schema-api` has updates, I have checked https://github.com/bufbuild/modules/issues/592 | |
team-reviewers: bufbuild/bsr-team | |
token: ${{ steps.generate_token.outputs.token }} | |
- uses: dblock/create-a-github-issue@c5e54b8762a0c4c2cd9330750e30b81bcc369c38 | |
if: failure() | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
GITHUB_SERVER_URL: ${ github.server_url }} | |
GITHUB_REPOSITORY: ${{ github.repository }} | |
GITHUB_RUN_ID: ${{ github.run_id }} | |
GITHUB_RUN_ATTEMPT: ${{ github.run_attempt }} | |
with: | |
filename: .github/automatic-workflow-issue-template.md | |
update_existing: true | |
search_existing: open |