Skip to content

Commit

Permalink
fix package directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mikealfare committed Dec 7, 2024
1 parent 8217651 commit 3dfa158
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_changelog-entry-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
filters: |
exists:
- added|modified: '${{ needs.package.outputs.directory }}/.changes/unreleased/**.yaml'
- added|modified: '${{ needs.package.outputs.directory }}.changes/unreleased/**.yaml'
comment:
needs: changelog-check
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/_package-directory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ jobs:
run: |
if [[ ${{ inputs.package }} == "dbt-adapters" ]]
then
directory="."
directory=""
else
directory="${{ inputs.package }}"
directory="${{ inputs.package }}/"
fi
echo "directory=$directory" >> $GITHUB_OUTPUT
- run: echo "::notice title=$TITLE::$MESSAGE"
- run: |
echo "::notice $TITLE::$MESSAGE"
env:
TITLE: "Package directory"
MESSAGE: "${{ steps.pacakge.outputs.directory }}"

0 comments on commit 3dfa158

Please sign in to comment.