Added analytical components #577
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
# this workflow automates the process of merging changes made to release and | |
# development branches down into development branches for future versions | |
# see https://github.com/mcneel/merge-down-action | |
name: merge_down | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true | |
steps: | |
# use token from "merge-down-robot" app | |
- name: Get token | |
id: my-app | |
uses: getsentry/action-github-app-token@v1 | |
with: | |
app_id: ${{ secrets.MERGE_DOWN_APP_ID }} | |
private_key: ${{ secrets.MERGE_DOWN_APP_PRIVATE_KEY }} | |
- uses: mcneel/[email protected] | |
with: | |
token: ${{ steps.my-app.outputs.token }} |