mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-25 19:15:34 +00:00
dd6b808acf
Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 7.0.1 to 7.0.5.
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](8867c4aba1...5e914681df
)
---
updated-dependencies:
- dependency-name: peter-evans/create-pull-request
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54 lines
2.1 KiB
YAML
54 lines
2.1 KiB
YAML
name: update-webclient-prebuilt
|
|
|
|
on:
|
|
# manually triggered
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
update-webclient-prebuilt:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
- name: Run go get
|
|
run: |
|
|
./tool/go version # build gocross if needed using regular GOPROXY
|
|
GOPROXY=direct ./tool/go get github.com/tailscale/web-client-prebuilt
|
|
./tool/go mod tidy
|
|
|
|
- name: Get access token
|
|
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
|
|
id: generate-token
|
|
with:
|
|
# TODO(will): this should use the code updater app rather than licensing.
|
|
# It has the same permissions, so not a big deal, but still.
|
|
app_id: ${{ secrets.LICENSING_APP_ID }}
|
|
installation_retrieval_mode: "id"
|
|
installation_retrieval_payload: ${{ secrets.LICENSING_APP_INSTALLATION_ID }}
|
|
private_key: ${{ secrets.LICENSING_APP_PRIVATE_KEY }}
|
|
|
|
- name: Send pull request
|
|
id: pull-request
|
|
uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f #v7.0.5
|
|
with:
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
author: OSS Updater <noreply+oss-updater@tailscale.com>
|
|
committer: OSS Updater <noreply+oss-updater@tailscale.com>
|
|
branch: actions/update-webclient-prebuilt
|
|
commit-message: "go.mod: update web-client-prebuilt module"
|
|
title: "go.mod: update web-client-prebuilt module"
|
|
body: Triggered by ${{ github.repository }}@${{ github.sha }}
|
|
signoff: true
|
|
delete-branch: true
|
|
reviewers: ${{ github.triggering_actor }}
|
|
|
|
- name: Summary
|
|
if: ${{ steps.pull-request.outputs.pull-request-number }}
|
|
run: echo "${{ steps.pull-request.outputs.pull-request-operation}} ${{ steps.pull-request.outputs.pull-request-url }}" >> $GITHUB_STEP_SUMMARY
|