enchance #70
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: test | |
on: | |
push: | |
branches: [main] | |
jobs: | |
tag-azure-board-work-item: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout repository | |
- uses: ./.github/workflows/actions/ado_tag | |
with: | |
gh-token: ${{ secrets.GITHUB_TOKEN }} | |
repository: ${{ github.repository }} | |
commit-sha: ${{ github.event.after }} | |
# jobs: | |
# get-pr-number-from-commit-message: | |
# runs-on: ubuntu-latest | |
# outputs: | |
# pr_number: ${{ steps.step1.outputs.pr_number }} | |
# env: | |
# GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# REPOSITORY: ${{ github.repository }} | |
# COMMIT_SHA: ${{ github.event.after }} | |
# AB_REFERENCE_PATTERN: s/^.*AB#\([0-9]*\).*$/\1/p | |
# steps: | |
# - name: Get PR's body | |
# id: get_pr_body | |
# run: | | |
# echo "body=$(gh pr list --json body --repo $REPOSITORY --state all --search $COMMIT_SHA --jq '.[].body')" >> $GITHUB_OUTPUT | |
# - name: Print Azure Board reference from PR's body | |
# run: echo "${{ steps.get_pr_body.outputs.body }}" | sed -n "$AB_REFERENCE_PATTERN" | |
# output=$(gh pr list --json body --repo LukaszSielski/workflows_tests --search ${{ github.event.after }})\ | |
# output=$(gh pr list --json body --repo ${{ github.repository_owner }}/${{ github.repository }} --search b2a801fe5874f9a8e06dc9d5dbd11afbd36943c3 --jq '.[].body') | |
# echo "$output" |