diff --git a/.github/workflows/cleanup-report.yml b/.github/workflows/cleanup-report.yml index 50f0716ee0..e4012ca2ea 100644 --- a/.github/workflows/cleanup-report.yml +++ b/.github/workflows/cleanup-report.yml @@ -11,12 +11,20 @@ jobs: cleanup-report: runs-on: ubuntu-latest steps: + - name: Generate GitHub App token + id: generate-token + uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 + with: + app-id: ${{ secrets.CI_CAL_APP_ID }} + private-key: ${{ secrets.CI_CAL_APP_PRIVATE_KEY }} + repositories: 'test-results-2' + - name: Checkout GitHub Pages Branch uses: actions/checkout@v4 with: repository: calcom/test-results-2 ref: gh-pages - token: ${{ secrets.GH_ACCESS_TOKEN }} + token: ${{ steps.generate-token.outputs.token }} - name: Set Git User run: | diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 501c88c769..6e7fd6140e 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -22,12 +22,20 @@ jobs: # Contains all reports for deleted branch BRANCH_REPORTS_DIR: reports/${{ github.event.ref }} steps: + - name: Generate GitHub App token + id: generate-token + uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 + with: + app-id: ${{ secrets.CI_CAL_APP_ID }} + private-key: ${{ secrets.CI_CAL_APP_PRIVATE_KEY }} + repositories: 'test-results-2' + - name: Checkout GitHub Pages Branch - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: calcom/test-results-2 ref: gh-pages - token: ${{ secrets.GH_ACCESS_TOKEN }} + token: ${{ steps.generate-token.outputs.token }} - name: Set Git User # see: https://github.com/actions/checkout/issues/13#issuecomment-724415212 run: | diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 40ab791c4e..d56a64542a 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -17,13 +17,20 @@ jobs: runs-on: ubuntu-latest steps: - + - name: Generate GitHub App token + id: generate-token + uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 + with: + app-id: ${{ secrets.CI_CAL_APP_ID }} + private-key: ${{ secrets.CI_CAL_APP_PRIVATE_KEY }} + repositories: 'cal.com' + - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 ref: 'main' - token: ${{ secrets.GH_ACCESS_TOKEN }} + token: ${{ steps.generate-token.outputs.token }} - name: Configure git run: | diff --git a/.github/workflows/i18n.yml b/.github/workflows/i18n.yml index b3b0d99c13..b3118bc5b2 100644 --- a/.github/workflows/i18n.yml +++ b/.github/workflows/i18n.yml @@ -16,6 +16,14 @@ jobs: contents: write pull-requests: write steps: + - name: Generate GitHub App token + id: generate-token + uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 + with: + app-id: ${{ secrets.CI_CAL_APP_ID }} + private-key: ${{ secrets.CI_CAL_APP_PRIVATE_KEY }} + repositories: 'cal.com' + - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: @@ -23,7 +31,7 @@ jobs: cache: 'npm' - uses: lingodotdev/lingo.dev@main env: - GH_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }} + GH_TOKEN: ${{ steps.generate-token.outputs.token }} with: api-key: ${{ secrets.CI_LINGO_DOT_DEV_API_KEY }} pull-request: true diff --git a/.github/workflows/post-release.yml b/.github/workflows/post-release.yml index 252df829c3..ddcef9f5ce 100644 --- a/.github/workflows/post-release.yml +++ b/.github/workflows/post-release.yml @@ -6,16 +6,27 @@ on: tags: - "*" +permissions: + contents: write + jobs: release: runs-on: ubuntu-latest steps: + - name: Generate GitHub App token + id: generate-token + uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 + with: + app-id: ${{ secrets.CI_CAL_APP_ID }} + private-key: ${{ secrets.CI_CAL_APP_PRIVATE_KEY }} + repositories: 'cal.com' + - name: Checkout code uses: actions/checkout@v4 with: fetch-depth: 0 ref: 'main' - token: ${{ secrets.GH_ACCESS_TOKEN }} + token: ${{ steps.generate-token.outputs.token }} - name: Configure git run: | diff --git a/.github/workflows/publish-report.yml b/.github/workflows/publish-report.yml index decfc26cf9..f3af9ee335 100644 --- a/.github/workflows/publish-report.yml +++ b/.github/workflows/publish-report.yml @@ -13,12 +13,20 @@ jobs: HTML_REPORT_URL_PATH: reports/${{ github.head_ref }}/${{ github.run_id }}/${{ github.run_attempt }} BRANCH_REPORTS_DIR: reports/${{ github.head_ref }} steps: + - name: Generate GitHub App token + id: generate-token + uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 + with: + app-id: ${{ secrets.CI_CAL_APP_ID }} + private-key: ${{ secrets.CI_CAL_APP_PRIVATE_KEY }} + repositories: 'test-results-2' + - name: Checkout GitHub Pages Branch uses: actions/checkout@v4 with: repository: calcom/test-results-2 ref: gh-pages - token: ${{ secrets.GH_ACCESS_TOKEN }} + token: ${{ steps.generate-token.outputs.token }} - name: Set Git User # see: https://github.com/actions/checkout/issues/13#issuecomment-724415212 run: |