Skip to content

Commit

Permalink
Update token and remove alphas
Browse files Browse the repository at this point in the history
  • Loading branch information
fhielpos committed Jul 16, 2024
1 parent 9a9bd50 commit b556a78
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sync-from-upstream.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit b556a78

Please sign in to comment.