#111 Dropping support for older runtimes #85
Workflow file for this run
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: Broadcast master updates to satellites | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: git-broadcast | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2-beta | |
with: | |
node-version: '16' | |
- name: broadcast master changes to satellite branches | |
env: | |
RUN_NUMBER: ${{ github.run_number }} | |
run: | | |
git config --global user.name "Git Broadcast" | |
git config --global user.email "git-broadcast@no-reply.com" | |
npx git-broadcast@beta --ignore abandoned-develop --from master --push --pretty --suppress-log-prefixes --prefix-logs-with $GITHUB_REPOSITORY |