aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/touch-google-refresh-token.yml
blob: 9c4e2ec9bc92d8fc25f0e3ede782d1f98c001a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Touch google token
on:
  schedule:
    - cron: "0 3 2 * *" # At 03:00 on day-of-month 2
  workflow_dispatch:
permissions: {}
jobs:
  fetchToken:
    runs-on: ubuntu-latest
    environment: cd
    steps:
      - uses: cardinalby/google-api-fetch-token-action@24c99245e2a2494cc4c4b1037203d319a184b15b # pin@v1.0.3
        with:
          clientId: ${{ secrets.G_CLIENT_ID }}
          clientSecret: ${{ secrets.G_CLIENT_SECRET }}
          refreshToken: ${{ secrets.G_REFRESH_TOKEN }}