From 74b2cb20e69d0ecf8c09963fbc7afcce2540683e Mon Sep 17 00:00:00 2001 From: Jacob Bolda Date: Fri, 10 Jul 2020 12:29:11 -0500 Subject: [PATCH] feat: bump covector action to v0 --- .changes/config.json | 1 + .github/workflows/change-status-on-PR.yml | 4 +++- .github/workflows/pr-version-updates.yml | 8 ++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.changes/config.json b/.changes/config.json index 53255bd53..d59e3bc42 100644 --- a/.changes/config.json +++ b/.changes/config.json @@ -1,4 +1,5 @@ { + "gitSiteUrl": "https://www.github.com/tauri-apps/tauri/", "pkgManagers": { "rust": { "version": true, diff --git a/.github/workflows/change-status-on-PR.yml b/.github/workflows/change-status-on-PR.yml index 7edb77215..72f9bee13 100644 --- a/.github/workflows/change-status-on-PR.yml +++ b/.github/workflows/change-status-on-PR.yml @@ -7,8 +7,10 @@ jobs: steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: covector status - uses: jbolda/covector/packages/action@covector-v0.1.0 + uses: jbolda/covector/packages/action@covector-v0 id: covector with: command: 'status' diff --git a/.github/workflows/pr-version-updates.yml b/.github/workflows/pr-version-updates.yml index ca42d5cde..d422449c1 100644 --- a/.github/workflows/pr-version-updates.yml +++ b/.github/workflows/pr-version-updates.yml @@ -11,12 +11,14 @@ jobs: steps: - uses: actions/checkout@v2 + with: + fetch-depth: 0 - name: git config run: | git config --global user.name "${{ github.event.pusher.name }}" git config --global user.email "${{ github.event.pusher.email }}" - name: covector version - uses: jbolda/covector/packages/action@covector-v0.1.0 + uses: jbolda/covector/packages/action@covector-v0 id: covector with: command: 'version' @@ -28,6 +30,4 @@ jobs: title: Apply Version Updates From Current Changes commit-message: "apply version updates" labels: "version updates" - body: | - Merging this PR will update the versions on all packages with changes as specified in the `.changes` directory. - It will kick off the process to release and publish any packages with an incremented version number. + body: ${{ steps.covector.outputs.change }}