chore(deps): lock file maintenance #278
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Tests this action success by the application already being installed on the repository | |
name: Test Success - repository - installed | |
on: | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: The name of the branch to checkout for the action | |
required: true | |
default: main | |
# One build per branch, cancel out of date builds only on pull requests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
test-installed-repo: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout specified branch | |
if: github.event_name == 'workflow_dispatch' | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
ref: ${{ github.event.inputs.branch }} | |
- name: Checkout | |
if: github.event_name != 'workflow_dispatch' | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Use action | |
id: use_action | |
uses: ./ | |
with: | |
application_id: ${{ secrets.GHA_APPLICATION_ID }} | |
application_private_key: ${{ secrets.GHA_APPLICATION_PRIVATE_KEY }} | |
- name: Use token to read details | |
uses: actions/github-script@10b53a9ec6c222bb4ce97aa6bd2b5f739696b536 # v4 #TODO: Update to v6 | |
with: | |
github-token: ${{ steps.use_action.outputs.token }} | |
script: | | |
const repo = await github.repos.get(context.repo); | |
console.log(JSON.stringify(repo, null, 2)); | |
- name: Use token to checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
with: | |
token: ${{ steps.use_action.outputs.token }} | |
repository: sammcj/demo-gha-install-token |