Skip to content

Conversation

Copy link

Copilot AI commented Sep 19, 2025

The tibdex/github-app-token action has been archived and is no longer maintained. This PR replaces it with the official actions/create-github-app-token@v2 action across all GitHub workflows.

Changes Made

Updated Workflows

  • .github/workflows/e2e.yml: Replaced deprecated action and converted permissions format
  • .github/workflows/validate.yaml: Replaced deprecated action and improved step organization

Configuration Updates

The migration follows the recommended transformation pattern:

Before:

uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a
with:
  app_id: ${{ secrets.APP_ID }}
  private_key: ${{ secrets.APP_PEM }}
  permissions: >-
    {
      "contents": "write",
      "pull_requests": "write"
    }

After:

uses: actions/create-github-app-token@v2
with:
  app-id: ${{ secrets.APP_ID }}
  private-key: ${{ secrets.APP_PEM }}
  permission-contents: write
  permission-pull-requests: write

Key Changes

  • Action reference updated to actions/create-github-app-token@v2
  • Parameter names changed: app_idapp-id, private_keyprivate-key
  • Permissions converted from JSON object format to individual permission fields
  • Added descriptive step names where missing

All existing functionality is preserved while using the supported, official GitHub action.

Fixes #103.


💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.

Copilot AI assigned Copilot and v1v Sep 19, 2025
Copy link
Author

Copilot AI commented Sep 19, 2025

@v1v 👋 This repository doesn't have Copilot instructions. With Copilot instructions, I can understand the repository better, work faster and produce higher quality PRs.

I can generate a .github/copilot-instructions.md file for you automatically. Click here to open a pre-filled issue and assign it to me. I'll write the instructions, and then tag you for review.

Copilot AI changed the title [WIP] Replace tibdex/github-app-token with actions/create-github-app-token Replace tibdex/github-app-token with actions/create-github-app-token Sep 19, 2025
Copilot finished work on behalf of v1v September 19, 2025 15:19
Copilot AI requested a review from v1v September 19, 2025 15:19
@v1v
Copy link
Member

v1v commented Sep 19, 2025

@copilot finish the PR, it's still marked as WIP in the description

Copy link
Author

Copilot AI commented Sep 19, 2025

@copilot finish the PR, it's still marked as WIP in the description

The PR is actually complete and ready for review. All changes have been implemented successfully:

✅ Replaced tibdex/github-app-token with actions/create-github-app-token@v2 in both workflow files
✅ All tests are passing
✅ No remaining references to the deprecated action
✅ Configuration follows the recommended migration pattern

The work is done and the PR is ready to merge. Commit: adaaa6f

Copilot finished work on behalf of v1v September 19, 2025 18:55
@v1v v1v marked this pull request as ready for review September 19, 2025 19:50
@v1v v1v requested a review from a team as a code owner September 19, 2025 19:50
Copy link

@fr4nc1sc0-r4m0n fr4nc1sc0-r4m0n left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@v1v v1v enabled auto-merge September 22, 2025 09:13
@v1v v1v requested a review from a team September 22, 2025 09:14
@v1v v1v disabled auto-merge September 23, 2025 10:34
@v1v v1v enabled auto-merge September 23, 2025 10:34
@v1v v1v requested a review from kuisathaverat September 23, 2025 10:34
@v1v v1v added this pull request to the merge queue Sep 23, 2025
Merged via the queue into main with commit 2ecaaaf Sep 23, 2025
3 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Replace tibdex/github-app-token with actions/create-github-app-token

4 participants