summaryrefslogtreecommitdiff
path: root/.github/workflows/refresh_token.yml
blob: a75f9633514de3454c7f2b6b56c67c4501e0aeed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: Refresh the automation hub token
# the token expires every 30 days, so we need to refresh it
on:
    schedule:
        - cron: '0 12 1,15 * *' # run 12pm on the 1st and 15th of the month
    workflow_dispatch:

jobs:
    refresh:
        uses: ansible/devtools/.github/workflows/ah_token_refresh.yml@v22.5.0
        with:
            environment: release
        secrets:
            ah_token: ${{ secrets.AH_TOKEN }}