/
githubmirror
/
act
Обзор
Документация
Войти
/
githubmirror
/
act
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/runner/testdata/pull-request/main.yaml
26 строк
926 B
Markus Wolf
fix: keep path to event json file in composite actions (#1428)
16 ноя 2022, 20:00
Не верифицирован
16 ноя 2022, 20:00
2614b3e
Код
Авторство
О чём код?
name: basic on: pull_request jobs: build: runs-on: ubuntu-latest steps: # test refs from event.json - run: echo '${{github.ref}}' - run: echo '${{github.head_ref}}' | grep sample-head-ref - run: echo '${{github.base_ref}}' | grep sample-base-ref # test main/composite context equality with data from event.json - run: | runs: using: composite steps: - run: | echo WORKFLOW_GITHUB_CONTEXT="$WORKFLOW_GITHUB_CONTEXT" echo COMPOSITE_GITHUB_CONTEXT="$COMPOSITE_GITHUB_CONTEXT" [[ "$WORKFLOW_GITHUB_CONTEXT" = "$COMPOSITE_GITHUB_CONTEXT" ]] env: WORKFLOW_GITHUB_CONTEXT: ${{ tojson(tojson(github.event)) }} COMPOSITE_GITHUB_CONTEXT: ${{ '${{tojson(github.event)}}' }} shell: bash shell: cp {0} action.yml - uses: ./