refactor/remove unused service #63
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: AutoMerge | |
on: | |
pull_request: | |
types: | |
- opened | |
branches: | |
- main | |
jobs: | |
auto-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'auto-build:') }} | |
with: | |
labels: automerge | |
- id: automerge | |
name: automerge | |
uses: "pascalgn/[email protected]" | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
- uses: actions/checkout@v4 | |
with: | |
repository: Leukocyte-Lab/AGH2-Manifest | |
token: ${{ secrets.GH_TOKEN }} | |
- name: dump .version.json | |
id: versions | |
run: | | |
VERSION=$(cat .version.json) | |
echo "::set-output name=version::${VERSION}" | |
- name: Invoke workflow Update ArgusHack in Leukocyte-Lab/ArgusHack2 | |
run: | | |
echo '{"version": ${{ toJson(steps.versions.outputs.version) }}}' | gh workflow -R Leukocyte-Lab/ArgusHack2 run agh2-update.yml -r develop --json | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} |