From b556a786fb5f7e1696911ef28d49243abeb9f8a2 Mon Sep 17 00:00:00 2001 From: Franco Date: Tue, 16 Jul 2024 16:28:48 -0300 Subject: [PATCH] Update token and remove alphas --- .github/workflows/sync-from-upstream.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/sync-from-upstream.yaml b/.github/workflows/sync-from-upstream.yaml index 68c9872c36ac..13c8a6e5d0b6 100644 --- a/.github/workflows/sync-from-upstream.yaml +++ b/.github/workflows/sync-from-upstream.yaml @@ -16,10 +16,10 @@ jobs: steps: - name: Generate token id: generate_token - uses: tibdex/github-app-token@v1 + uses: actions/create-github-app-token@v1 with: - app_id: ${{ secrets.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} + app-id: ${{ secrets.HERALD_APP_ID }} + private-key: ${{ secrets.HERALD_APP_KEY }} - name: Checkout uses: actions/checkout@v3 @@ -30,6 +30,6 @@ jobs: # Fetch tags from upstream repo git fetch https://github.com/kyverno/kyverno --tags # Remove release candidates local tags - git tag -d $(git tag -l | grep -Ei "\-rc|\-beta|\-dev|\-chart") + git tag -d $(git tag -l | grep -Ei "\-rc|\-beta|\-dev|\-chart|\-alpha") git push --tags