Skip to content

Commit

Permalink
feat: file
Browse files Browse the repository at this point in the history
removed romain token

BREAKING CHANGE: token issue
  • Loading branch information
Renny committed Sep 22, 2023
1 parent cf59c2e commit 19d3925
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ jobs:
extends: |
semantic-release-monorepo
env:
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- if: ${{ steps.skip_check.outputs.should_skip != 'true' || !fromJSON(steps.skip_check.outputs.paths_result).webui.should_skip }}
name: Semantic Release web-ui
id: semantic_web-ui
Expand All @@ -96,8 +96,8 @@ jobs:
extends: |
semantic-release-monorepo
env:
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
build-api:
needs: prepare
if: ${{ needs.prepare.outputs.should_skip != 'true' || !fromJSON(needs.prepare.outputs.paths_result).api.should_skip || needs.prepare.outputs.api_new_release_published == 'true' }}
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Build and analyze
run: mvn -f code/api -B clean install org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: stop oauth2-dev-server
run: docker-compose -f code/docker-compose.dev.yaml down
Expand Down Expand Up @@ -220,7 +220,7 @@ jobs:
args: >
-Dsonar.projectVersion=${{ steps.getVersion.outputs.projectVersion }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Prepare
id: prep
Expand Down Expand Up @@ -274,7 +274,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.PAT_TOKEN }}
token: ${{ secrets.ACCESS_TOKEN }}
ref: ${{ github.ref }}
- uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -326,8 +326,8 @@ jobs:
@semantic-release/changelog@6.0.1
@semantic-release/git@10.0.1
env:
GH_TOKEN: ${{ secrets.PAT_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.ACCESS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- name: Configure Git
run: |
git config user.name "$GITHUB_ACTOR"
Expand All @@ -339,4 +339,4 @@ jobs:
version: v1.3.0
charts_dir: charts/candidate
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_TOKEN: "${{ secrets.ACCESS_TOKEN }}"
2 changes: 1 addition & 1 deletion .github/workflows/charts-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,5 +85,5 @@ jobs:
files: helm-templates-candidate,helm-templates-stable
openshift: true
comment: true
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.ACCESS_TOKEN }}
version: ${{ matrix.k8s }}
6 changes: 3 additions & 3 deletions .github/workflows/charts-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
with:
token: ${{ secrets.PAT_TOKEN }}
token: ${{ secrets.ACCESS_TOKEN }}
- name: Copy candidate to stable version
working-directory: code
run: make copy-candidate-to-stable
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
tag_name: ara-stable-v${{ steps.version.outputs.stable }}
previous_tag_name: ${{ steps.version.outputs.fromTag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
- name: Create Changelog file
working-directory: charts/stable
run: |
Expand All @@ -81,4 +81,4 @@ jobs:
version: v1.3.0
charts_dir: charts/stable
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_TOKEN: "${{ secrets.ACCESS_TOKEN }}"

0 comments on commit 19d3925

Please sign in to comment.