Update dependency rancher/cli to v2.7.7 #197
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
name: Workflow Sync | |
on: | |
workflow_dispatch: | |
# push: | |
# branches: | |
# - master | |
pull_request: | |
types: [ closed ] | |
branches: [ master ] | |
jobs: | |
file-syncs: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo PR #${{ github.event.number }} has been merged | |
- name: Running Workflow Sync | |
uses: 'jetersen/ghaction.file.sync@v1' | |
with: | |
appId: ${{ secrets.FILE_SYNC_APP_ID }} | |
privateKey: ${{ secrets.FILE_SYNC_APP_PEM }} |