Skip to content

Commit

Permalink
feat: fix (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhanks-bestow authored Jan 27, 2024
1 parent efa4d42 commit af440db
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
analyze:
runs-on: ubuntu-latest
steps:
- run: echo noop
- run: noop
# - uses: actions/[email protected]
# - uses: dart-lang/setup-dart@v1
# - run: dart pub get
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
format:
runs-on: ubuntu-latest
steps:
- run: echo noop
- run: noop
# - uses: actions/[email protected]
# - uses: dart-lang/setup-dart@v1
# - run: dart pub get
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:
- 'v[0-9]+.[0-9]+.[0-9]+*'
jobs:
publish:
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
permissions:
id-token: write
uses: dart-lang/setup-dart/.github/workflows/publish.yml@v1
6 changes: 3 additions & 3 deletions .github/workflows/release-please.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- uses: google-github-actions/release-please-action@v4
id: release
with:
token: $
token: ${{ secrets.release_please_token }}
release-type: dart
- name: Enable Pull Request Automerge
if: steps.release.outputs.prs_created && steps.release.outputs.pr != null
run: gh pr merge --merge --auto $
run: gh pr merge --merge --auto ${{ fromJson(steps.release.outputs.pr).number }}
env:
GH_TOKEN: $
GH_TOKEN: ${{ secrets.release_please_token }}
5 changes: 1 addition & 4 deletions .github/workflows/semantic-pull-request.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
name: "Lint PR"

on:
pull_request_target:
types:
- opened
- edited
- synchronize

permissions:
pull-requests: read

jobs:
semantic-pull-request:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: $
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo noop
- run: noop
# - uses: actions/[email protected]
# - uses: dart-lang/setup-dart@v1
# - run: dart pub get
Expand Down

0 comments on commit af440db

Please sign in to comment.