From 6732fbcdfedb4c5490f24038fc325f35cec61e37 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Mon, 15 May 2023 11:17:07 -0700 Subject: [PATCH 1/2] blast_repo fixes (#119) dependabot --- .github/dependabot.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 2144819..439e796 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -2,7 +2,9 @@ version: 2 updates: - - package-ecosystem: "github-actions" - directory: "/" + - package-ecosystem: github-actions + directory: / schedule: - interval: "monthly" + interval: monthly + labels: + - autosubmit From 72f107a3be948a22d080e994257be3ba63f1bb41 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Mon, 15 May 2023 11:17:15 -0700 Subject: [PATCH 2/2] blast_repo fixes (#120) auto-publish --- .github/workflows/publish.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..e8e5a36 --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,14 @@ +# A CI configuration to auto-publish pub packages. + +name: Publish + +on: + pull_request: + branches: [ main ] + push: + tags: [ 'v[0-9]+.[0-9]+.[0-9]+' ] + +jobs: + publish: + if: ${{ github.repository_owner == 'dart-lang' }} + uses: dart-lang/ecosystem/.github/workflows/publish.yaml@main