Skip to content

Conversation

Copilot
Copy link

@Copilot 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 action in all GitHub workflows.

Changes Made

Updated .github/workflows/labeler.yml:

  • Replaced tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a with actions/create-github-app-token@v2
  • Updated parameter names: app_idapp-id, private_keyprivate-key
  • Converted permissions from JSON format to individual permission parameters:
    # Before
    permissions: >-
      {
        "members": "read"
      }
    
    # After
    permission-members: read

Updated .github/workflows/updatecli.yml:

  • Replaced tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a with actions/create-github-app-token@v2
  • Updated parameter names: app_idapp-id, private_keyprivate-key
  • Converted permissions from JSON format to individual permission parameters:
    # Before
    permissions: >-
      {
        "contents": "write",
        "pull_requests": "write"
      }
    
    # After
    permission-contents: write
    permission-pull-requests: write

The token outputs (steps.get_token.outputs.token) remain unchanged and continue to work with the new action. All functionality is preserved while migrating to the supported action.

Fixes #2431.


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

@Copilot 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 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 Copilot AI requested a review from v1v September 19, 2025 15:00
Copilot finished work on behalf of v1v September 19, 2025 15:00
@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 complete! All tibdex/github-app-token references have been successfully replaced with actions/create-github-app-token@v2 in both workflow files (labeler.yml and updatecli.yml). The YAML syntax is valid and all functionality is preserved. The changes are ready for merge. (f3cd136)

@v1v v1v marked this pull request as ready for review September 19, 2025 19:42
@v1v v1v requested review from a team as code owners September 19, 2025 19:42
@v1v v1v enabled auto-merge (squash) September 19, 2025 19:42
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
2 participants