Skip to content

+ Update aqua user list #99

+ Update aqua user list

+ Update aqua user list #99

Workflow file for this run

name: "+ Update aqua user list"
on:
workflow_dispatch: {}
schedule:
- cron: "0 0 * * *" # daily
jobs:
update-list:
runs-on: ubuntu-latest
permissions: {}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: 1.21.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}}
- uses: aquaproj/aqua-installer@36dc5833b04eb63f06e3bb818aa6b7a6e6db99a9 # v2.1.2
# Install ghcp
with:
aqua_version: v2.15.0
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}}