mirror of
https://github.com/tailscale/tailscale.git
synced 2026-02-08 06:51:42 -05:00
Bump peter-evans/create-pull-request to 8.0.0 to ensure compatibility with actions/checkout 6.x. Updates #cleanup Signed-off-by: Mario Minardi <mario@tailscale.com>
50 lines
1.6 KiB
YAML
50 lines
1.6 KiB
YAML
name: update-flake
|
|
|
|
on:
|
|
# run action when a change lands in the main branch which updates go.mod. Also
|
|
# allow manual triggering.
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- go.mod
|
|
- .github/workflows/update-flake.yml
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
update-flake:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
|
|
- name: Run update-flakes
|
|
run: ./update-flake.sh
|
|
|
|
- name: Get access token
|
|
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
|
|
id: generate-token
|
|
with:
|
|
# Get token for app: https://github.com/apps/tailscale-code-updater
|
|
app-id: ${{ secrets.CODE_UPDATER_APP_ID }}
|
|
private-key: ${{ secrets.CODE_UPDATER_APP_PRIVATE_KEY }}
|
|
|
|
- name: Send pull request
|
|
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 #v8.0.0
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
author: Flakes Updater <noreply+flakes-updater@tailscale.com>
|
|
committer: Flakes Updater <noreply+flakes-updater@tailscale.com>
|
|
branch: flakes
|
|
commit-message: "go.mod.sri: update SRI hash for go.mod changes"
|
|
title: "go.mod.sri: update SRI hash for go.mod changes"
|
|
body: Triggered by ${{ github.repository }}@${{ github.sha }}
|
|
signoff: true
|
|
delete-branch: true
|
|
reviewers: danderson
|