2022-08-25 17:28:10 +00:00
|
|
|
name: go-licenses
|
|
|
|
|
|
|
|
on:
|
|
|
|
# run action when a change lands in the main branch which updates go.mod or
|
|
|
|
# our license template file. Also allow manual triggering.
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- go.mod
|
|
|
|
- .github/licenses.tmpl
|
|
|
|
- .github/workflows/go-licenses.yml
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tailscale:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version-file: go.mod
|
|
|
|
|
|
|
|
- name: Install go-licenses
|
|
|
|
run: |
|
|
|
|
go install github.com/google/go-licenses@v1.2.2-0.20220825154955-5eedde1c6584
|
|
|
|
|
|
|
|
- name: Run go-licenses
|
|
|
|
env:
|
|
|
|
# include all build tags to include platform-specific dependencies
|
|
|
|
GOFLAGS: "-tags=android,cgo,darwin,freebsd,ios,js,linux,openbsd,wasm,windows"
|
|
|
|
run: |
|
|
|
|
[ -d licenses ] || mkdir licenses
|
|
|
|
go-licenses report tailscale.com/cmd/tailscale tailscale.com/cmd/tailscaled > licenses/tailscale.md --template .github/licenses.tmpl
|
|
|
|
|
|
|
|
- name: Get access token
|
|
|
|
uses: tibdex/github-app-token@f717b5ecd4534d3c4df4ce9b5c1c2214f0f7cd06 # v1.6.0
|
|
|
|
id: generate-token
|
|
|
|
with:
|
|
|
|
app_id: ${{ secrets.LICENSING_APP_ID }}
|
2022-08-26 23:12:29 +00:00
|
|
|
installation_id: ${{ secrets.LICENSING_APP_INSTALLATION_ID }}
|
2022-08-25 17:28:10 +00:00
|
|
|
private_key: ${{ secrets.LICENSING_APP_PRIVATE_KEY }}
|
|
|
|
|
|
|
|
- name: Send pull request
|
2022-10-17 16:25:29 +00:00
|
|
|
uses: peter-evans/create-pull-request@ad43dccb4d726ca8514126628bec209b8354b6dd #v4.1.4
|
2022-08-25 17:28:10 +00:00
|
|
|
with:
|
|
|
|
token: ${{ steps.generate-token.outputs.token }}
|
|
|
|
author: License Updater <noreply@tailscale.com>
|
2022-08-26 23:12:29 +00:00
|
|
|
committer: License Updater <noreply@tailscale.com>
|
2022-08-25 17:28:10 +00:00
|
|
|
branch: licenses/cli
|
|
|
|
commit-message: "licenses: update tailscale{,d} licenses"
|
|
|
|
title: "licenses: update tailscale{,d} licenses"
|
|
|
|
body: Triggered by ${{ github.repository }}@${{ github.sha }}
|
2022-08-26 23:12:29 +00:00
|
|
|
signoff: true
|
2022-08-25 17:28:10 +00:00
|
|
|
delete-branch: true
|
|
|
|
team-reviewers: opensource-license-reviewers
|