Skip to content

Commit

Permalink
Convert automerge-shared inputs into secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Nov 29, 2022
1 parent 3393f0d commit 117011b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/automerge-shared.yml
Expand Up @@ -2,7 +2,7 @@ name: Merge me test dependencies!

on:
workflow_call:
inputs:
secrets:
app_id:
description: "Github Application ID that'll be used for merging"
required: true
Expand All @@ -24,8 +24,8 @@ jobs:
uses: tibdex/github-app-token@v1
id: generate-token
with:
app_id: ${{ inputs.app_id }}
private_key: ${{ inputs.private_key }}
app_id: ${{ secrets.app_id }}
private_key: ${{ secrets.private_key }}
- name: Merge me!
uses: ridedott/merge-me-action@v2.10.34
with:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -164,7 +164,7 @@ Requires Github application to run!
.. list-table:: Configuration
:header-rows: 1

* - parameter
* - secret
- note
* - app_id
- Github Application ID that'll be used for merging
Expand Down
1 change: 1 addition & 0 deletions newsfragments/77.bugfix.rst
@@ -0,0 +1 @@
Add your info here

0 comments on commit 117011b

Please sign in to comment.