EP-2521 Standard Buttons instead of Radio Buttons for suggested amounts #182
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: Update staging | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [labeled, synchronize] | |
jobs: | |
update-staging: | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'On Staging') | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 🖇️ Merge current branch into staging | |
uses: devmasx/[email protected] | |
with: | |
type: now | |
target_branch: 'staging' | |
github_token: ${{ github.token }} |