Skip to content

Commit

Permalink
chore: try new token (and skip validation for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwhitney committed Feb 13, 2024
1 parent 3e03785 commit 7442200
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/release-workflows.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ local build = lokiRelease.build;
querytee: build.image('querytee', 'cmd/querytee', platform=['linux/amd64']),
},
releaseRepo='grafana/loki',
skipValidation=false,
skipValidation=true,
versioningStrategy='always-bump-patch',
imagePrefix='grafana',
// TODO: remove temp PR branch
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/patch-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
DOCKER_USERNAME: "grafana"
IMAGE_PREFIX: "grafana"
RELEASE_REPO: "grafana/loki"
SKIP_VALIDATION: false
SKIP_VALIDATION: true
VERSIONING_STRATEGY: "always-bump-patch"
jobs:
check:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
shell: "bash"
working-directory: "lib"
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -468,7 +468,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -566,7 +566,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -662,7 +662,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -760,7 +760,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -858,7 +858,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -956,7 +956,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -1052,7 +1052,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down Expand Up @@ -1150,7 +1150,7 @@ jobs:
--release-type simple \
--repo-url="${{ env.RELEASE_REPO }}" \
--target-branch "${{ steps.extract_branch.outputs.branch }}" \
--token="${{ secrets.GITHUB_TOKEN }}" \
--token="${{ secrets.GH_TOKEN }}" \
--versioning-strategy "${{ env.VERSIONING_STRATEGY }}"
if [[ `jq length release.json` -gt 1 ]]; then
Expand Down

0 comments on commit 7442200

Please sign in to comment.