Skip to content

Commit

Permalink
feat: add Personal access token (PAT)
Browse files Browse the repository at this point in the history
  • Loading branch information
lcenchew committed Aug 23, 2020
1 parent 741e3c2 commit 16b9d7e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ inputs:
branch:
description: 'Branch to merge to. For example, master'
default: 'master'
token:
description: >
Personal access token (PAT) used to fetch the repository. The PAT is configured
with the local git config, which enables your scripts to run authenticated git
commands. The post-job step removes the PAT.
We recommend using a service account with the least permissions necessary.
Also when generating a new PAT, select the least scopes necessary.
[Learn more about creating and using encrypted secrets](https://help.github.com/en/actions/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets)
default: ${{ github.token }}

runs:
using: "composite"
Expand All @@ -23,7 +32,8 @@ runs:
git remote add -f upstream "https://github.com/${{ inputs.upstream }}.git"
git remote -v
git branch --all
git config --list
git checkout ${{ inputs.branch }}
git merge --ff-only upstream/${{ inputs.upstream-branch }}
git push
shell: bash
shell: bash

1 comment on commit 16b9d7e

@SeanTAllen
Copy link

Choose a reason for hiding this comment

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

inputs.token appears to be unused here. i noticed because the token feature isn't working for me.

Please sign in to comment.