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 to ensure continued functionality.

Changes Made

File: .github/workflows/update-specs.yml

  • Updated action from tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a to actions/create-github-app-token@v2
  • Migrated input parameters to match the new action's API:
    • app_idapp-id
    • private_keyprivate-key
    • Converted JSON permissions object to individual permission parameters:
      • permission-contents: write
      • permission-pull-requests: write

Migration Details

The original configuration:

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

Has been replaced with:

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

The token output (steps.get_token.outputs.token) remains unchanged and continues to work with existing workflow steps.

Fixes #71.


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

@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:09
Copilot finished work on behalf of v1v September 19, 2025 15:09
@v1v v1v requested review from a team September 22, 2025 10:59
@v1v v1v marked this pull request as ready for review September 22, 2025 11:00
@v1v v1v requested review from a team September 22, 2025 11:00
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

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

3 participants