2828 - name : " Print manual run reason"
2929 if : ${{ github.event_name == 'workflow_dispatch' }}
3030 run : |
31- echo "Reason: ${{ github.event.inputs.reason }}"
32- echo "Issue number: ${{ github.event.inputs.issue }}"
31+ echo "Reason: $REASON"
32+ echo "Issue number: $ISSUENUMBER"
33+ env :
34+ REASON : ${{ github.event.inputs.reason }}
35+ ISSUENUMBER : ${{ github.event.inputs.issue }}
3336
3437 - name : Azure OpenID Connect
3538 id : azure-oidc-auth
@@ -50,10 +53,11 @@ jobs:
5053 ImportOptions__ApiKeys__QuestKey : ${{ secrets.QUEST_KEY }}
5154 ImportOptions__ApiKeys__SequesterPrivateKey : ${{ secrets.SEQUESTER_PRIVATEKEY }}
5255 ImportOptions__ApiKeys__SequesterAppID : ${{ secrets.SEQUESTER_APPID }}
56+ ISSUENUMBER : ${{ github.event.inputs.issue }}
5357 with :
5458 org : ${{ github.repository_owner }}
5559 repo : ${{ github.repository }}
56- issue : ${{ github.event.inputs.issue }}
60+ issue : $ISSUENUMBER
5761
5862 # This step occurs automatically, passing the issue number from the event
5963 - name : auto-sequester
6670 ImportOptions__ApiKeys__QuestKey : ${{ secrets.QUEST_KEY }}
6771 ImportOptions__ApiKeys__SequesterPrivateKey : ${{ secrets.SEQUESTER_PRIVATEKEY }}
6872 ImportOptions__ApiKeys__SequesterAppID : ${{ secrets.SEQUESTER_APPID }}
73+ ISSUENUMBER : ${{ github.event.issue.number }}
6974 with :
7075 org : ${{ github.repository_owner }}
7176 repo : ${{ github.repository }}
72- issue : ${{ github.event.issue.number }}
77+ issue : $ISSUENUMBER
0 commit comments