Refresh the automation hub token #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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/team-devtools/.github/workflows/ah_token_refresh.yml@main | |
with: | |
environment: release | |
secrets: | |
ah_token: ${{ secrets.AH_TOKEN }} |