From 49181ae2de66c4d5e46ce50fc807d8d3dac3d0fc Mon Sep 17 00:00:00 2001 From: ZHOU Date: Sun, 27 Oct 2024 23:10:47 +0800 Subject: [PATCH] Update create-update-iteration-plan.yml Drop deprecated commands: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/create-update-iteration-plan.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/create-update-iteration-plan.yml b/.github/workflows/create-update-iteration-plan.yml index 4460fac..350afd2 100644 --- a/.github/workflows/create-update-iteration-plan.yml +++ b/.github/workflows/create-update-iteration-plan.yml @@ -17,7 +17,8 @@ jobs: - name: Check issue title id: check_title - run: echo "::set-output name=skip::$(echo '${{ github.event.issue.title }}' | grep -q 'Iteration Plan for' && echo true || echo false)" + run: echo "skip=$(echo '${{ github.event.issue.title }}' | grep -q 'Iteration Plan for' && echo true || echo false)" >> $GITHUB_OUTPUT + # run: echo "::set-output name=skip::$(echo '${{ github.event.issue.title }}' | grep -q 'Iteration Plan for' && echo true || echo false)" - name: Check out the repository if: steps.check_title.outputs.skip == 'false'