Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ on:

jobs:
test:
uses: btwld/dart-actions/.github/workflows/ci.yml@main
# The dart-actions repo moved from the btwld org to conceptadev. The REST
# API follows that rename redirect, but the Actions reusable-workflow
# resolver does not, so the old path fails startup with "workflow was not
# found". Keep this owner in sync with the repo's actual location.
uses: conceptadev/dart-actions/.github/workflows/ci.yml@main
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ on:

jobs:
publish:
uses: btwld/dart-actions/.github/workflows/publish.yml@main
# The dart-actions repo moved from the btwld org to conceptadev. The REST
# API follows that rename redirect, but the Actions reusable-workflow
# resolver does not, so the old path fails startup with "workflow was not
# found". Keep this owner in sync with the repo's actual location.
uses: conceptadev/dart-actions/.github/workflows/publish.yml@main
permissions:
id-token: write
with:
Expand Down
Loading