Skip to content

sjdaws/app-token

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

App token

This action copies bubkoo/use-app-token but also works when running behind a proxy.

Usage

This action should be used when GITHUB_TOKEN is too restrictive.

- name: Get token
  id: get_token
  uses: sjdaws/app-token@v1
  with:
    appId: ${{ secrets.APP_ID }}
    privateKey: ${{ secrets.APP_PEM }}
- name: Use token
  uses: ...
  with:
    token: ${{ steps.get_token.outputs.token }}