Skip to content

Commit

Permalink
issue text
Browse files Browse the repository at this point in the history
  • Loading branch information
charlottekostelic committed Apr 11, 2024
1 parent 32ea882 commit 80bb193
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/monthly-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ jobs:
{
echo "ISSUE_BODY<<EOF"
if [[ ${{ contains(env.REVISED, 'sh') == 'true' }} ]]; then echo '### Changed:'
if [[ ${{ contains(env.REVISED, 'sh') == 'true' }} ]]; then echo '$(grep 'DEBUG - Revised' lcsh.log | grep -Eo '\[.+]$')'
if [[ ${{ contains(env.DEPRECATED, 'sh') == 'true' }} ]]; then echo '### Deprecated:'
if [[ ${{ contains(env.DEPRECATED, 'sh') == 'true' }} ]]; then echo '$(grep 'DEBUG - Deprecated' lcsh.log | grep -Eo '\[.+]$')'
echo "${{ contains(env.REVISED, 'sh') == 'true' && '### Changed:'}}"
echo "${{ contains(env.REVISED, 'sh') == 'true' && '$(grep 'DEBUG - Revised' lcsh.log | grep -Eo '\[.+]$')' }}"
echo "${{ contains(env.DEPRECATED, 'sh') == 'true' && '### Deprecated:' }}"
echo "${{ contains(env.DEPRECATED, 'sh') == 'true' && '$(grep 'DEBUG - Deprecated' lcsh.log | grep -Eo '\[.+]$')' }}"
echo EOF
} >> $GITHUB_ENV
Expand Down

0 comments on commit 80bb193

Please sign in to comment.