-
Notifications
You must be signed in to change notification settings - Fork 1
59 lines (55 loc) · 2.03 KB
/
update-list.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: "+ Update aqua user list"
on:
workflow_dispatch: {}
schedule:
- cron: "0 0 * * *" # daily
jobs:
update-list:
timeout-minutes: 30
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: 1.23.3
- id: generate_token
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0
with:
app_id: ${{secrets.APP_ID_AQUAPROJ_AQUA}}
private_key: ${{secrets.APP_PRIVATE_KEY_AQUAPROJ_AQUA}}
repositories: >-
[
"${{github.event.repository.name}}"
]
permissions: >-
{
"pull_requests": "write",
"contents": "write"
}
- uses: aquaproj/aqua-installer@6ce1f8848ec8e61f14d57bd5d7597057a6dd187c # v3.0.1
# Install ghcp
with:
aqua_version: v2.37.2
env:
AQUA_GITHUB_TOKEN: ${{github.token}}
- run: ghcp -v
env:
GITHUB_TOKEN: ${{github.token}}
- run: go run ./cmd/list-aqua-users | tee docs/LIST.md
env:
GITHUB_TOKEN: ${{github.token}}
- run: cat docs/HEADER.md docs/LIST.md docs/FOOTER.md > README.md
- id: create-branch
run: |
branch=update-list-$(date +%Y%m%d%H%M%S)
echo "branch=$branch" >> "$GITHUB_OUTPUT"
ghcp commit -r "$GITHUB_REPOSITORY" -m "docs: update the user list" -b "$branch" README.md docs/LIST.md
env:
GITHUB_TOKEN: ${{steps.generate_token.outputs.token}}
- run: |
body="This pull request is created by [GitHub Actions]($GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID)."
gh pr create -t "docs: update the user list" -H "$BRANCH" -b "$body"
env:
BRANCH: ${{steps.create-branch.outputs.branch}}
GITHUB_TOKEN: ${{steps.generate_token.outputs.token}}