test2 #14
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: Trigger METplus Workflow | |
on: | |
push: | |
branches: | |
- develop | |
- 'main_v[0-9]+.[0-9]+' | |
- main | |
paths-ignore: | |
- 'docs/**' | |
- '.github/pull_request_template.md' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '**/README.md' | |
- '**/LICENSE.md' | |
jobs: | |
trigger_metplus: | |
name: Trigger METplus testing workflow | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print GitHub values for reference | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Checkout code from this repo | |
uses: actions/checkout@v4 | |
# get the develop branch of METplus to get the latest component version script | |
# use fetch-depth 0 to get all branches | |
- uses: actions/checkout@v4 | |
with: | |
repository: 'dtcenter/METplus' | |
#ref: 'develop' | |
path: 'METplus' | |
fetch-depth: 0 | |
- id: get_version | |
run: | | |
version=$(cut -d "/" -f3 <<< "${GITHUB_REF}") | |
echo "version=${version}" >> $GITHUB_OUTPUT | |
- id: get_metplus_branch | |
run: | | |
repo=${{ github.repository }} | |
repo=${repo#*/} | |
version=${{ steps.get_version.outputs.version }} | |
git -C $GITHUB_WORKSPACE/METplus checkout develop | |
cmd="$GITHUB_WORKSPACE/METplus/metplus/component_versions.py -i METplotpy -v ${version} -o METplus -f main_v{X}.{Y}" | |
echo $cmd | |
metplus_branch=$($cmd) | |
echo git -C $GITHUB_WORKSPACE/METplus branch -l ${metplus_branch} | |
git -C $GITHUB_WORKSPACE/METplus branch -l | |
branch_exists=$(git -C $GITHUB_WORKSPACE/METplus branch -l ${metplus_branch}) | |
echo branch exists: ${branch_exists} | |
if [ -z "${branch_exists}" ]; then | |
echo "METplus branch ${metplus_branch} does not exist yet" | |
metplus_branch=none | |
fi | |
echo "metplus_branch=${metplus_branch}" >> $GITHUB_OUTPUT | |
- if: ( steps.get_metplus_branch.outputs.metplus_branch != 'none' ) | |
run: | | |
metplus_branch=${{ steps.get_metplus_branch.outputs.metplus_branch }} | |
echo "Triggering workflow dispatch of ${metplus_branch}" | |
# - if: ( steps.get_metplus_branch.outputs.metplus_branch != 'none' ) | |
# uses: actions/github-script@v7 | |
# with: | |
# github-token: ${{ secrets.METPLUS_BOT_TOKEN }} | |
# script: | | |
# await github.rest.actions.createWorkflowDispatch({ | |
# owner: 'dtcenter', | |
# repo: 'METplus', | |
# workflow_id: 'testing.yml', | |
# ref: ${{ steps.get_metplus_branch.outputs.metplus_branch }}, | |
# inputs: { | |
# repository: '${{ github.repository }}', | |
# ref: '${{ github.ref }}', | |
# actor: '${{ github.actor }}', | |
# sha: '${{ github.sha }}', | |
# pusher_email: '${{ github.event.pusher.email }}' | |
# }, | |
# }); |