diff --git a/.github/workflows/update-contrib.yml b/.github/workflows/update-contrib.yml index ebec1c9..20da3d0 100644 --- a/.github/workflows/update-contrib.yml +++ b/.github/workflows/update-contrib.yml @@ -42,6 +42,13 @@ jobs: git add _data/people_list.yml git commit -m "Update contributors on $(date +'%Y-%m-%d')" || ${echo "No changes to commit" && false} + - name: Grab content from summary file + id: getsummary + run: | + echo 'foo<> $GITHUB_OUTPUT + echo $(cat summary.txt) >> $GITHUB_OUTPUT + echo 'EOF' >> $GITHUB_OUTPUT + # Create a pull request - name: Create Pull Request uses: peter-evans/create-pull-request@v5 @@ -49,4 +56,4 @@ jobs: commit-message: "Update contributors on $(date +'%Y-%m-%d')" branch: update-contributors title: "Update contributors" - body: "$(cat summary.txt)" + body: "${{ env.foo }}"