From 33b64ed5c208b778d03dbb5f3f2808bb417c9f52 Mon Sep 17 00:00:00 2001 From: Jacob Bolda Date: Sun, 21 Feb 2021 21:21:19 -0600 Subject: [PATCH] chore: covector init (#55) * chore: covector init * Update .github/workflows/covector-version-or-publish.yml --- .changes/config.json | 85 +++++++++++++++++++ .changes/covector-init.md | 5 ++ .changes/readme.md | 31 +++++++ .github/workflows/covector-status.yml | 16 ++++ .../workflows/covector-version-or-publish.yml | 46 ++++++++++ 5 files changed, 183 insertions(+) create mode 100644 .changes/config.json create mode 100644 .changes/covector-init.md create mode 100644 .changes/readme.md create mode 100644 .github/workflows/covector-status.yml create mode 100644 .github/workflows/covector-version-or-publish.yml diff --git a/.changes/config.json b/.changes/config.json new file mode 100644 index 000000000..6593ca165 --- /dev/null +++ b/.changes/config.json @@ -0,0 +1,85 @@ +{ + "gitSiteUrl": "https://github.com/tauri-apps/wry/", + "timeout": 3600000, + "additionalBumpTypes": ["housekeeping"], + "pkgManagers": { + "rust": { + "version": true, + "getPublishedVersion": "cargo search ${ pkg.pkg } --limit 1 | sed -nE 's/^[^\"]*\"//; s/\".*//1p' -", + "prepublish": [ + "sudo apt-get update", + "cargo install cargo-audit --features=fix", + { + "command": "cargo generate-lockfile", + "dryRunCommand": true, + "runFromRoot": true, + "pipe": true + }, + { + "command": "echo \"# Cargo Audit\"", + "dryRunCommand": true, + "pipe": true + }, + { + "command": "echo \"\\`\\`\\`\"", + "dryRunCommand": true, + "pipe": true + }, + { + "command": "cargo audit ${ process.env.CARGO_AUDIT_OPTIONS || '' }", + "dryRunCommand": true, + "runFromRoot": true, + "pipe": true + }, + { + "command": "echo \"\\`\\`\\`\"", + "dryRunCommand": true, + "pipe": true + } + ], + "publish": [ + { + "command": "cargo package --allow-dirty", + "dryRunCommand": true + }, + { + "command": "echo \"# Cargo Publish\"", + "dryRunCommand": true, + "pipe": true + }, + { + "command": "echo \"\\`\\`\\`\"", + "dryRunCommand": true, + "pipe": true + }, + { + "command": "cargo publish --no-verify", + "dryRunCommand": "cargo publish --no-verify --dry-run --allow-dirty", + "pipe": true + }, + { + "command": "echo \"\\`\\`\\`\"", + "dryRunCommand": true, + "pipe": true + } + ], + "postpublish": [ + "git tag ${ pkg.pkg }-v${ pkgFile.versionMajor } -f", + "git tag ${ pkg.pkg }-v${ pkgFile.versionMajor }.${ pkgFile.versionMinor } -f", + "git push --tags -f" + ], + "assets": [ + { + "path": "${ pkg.path }/${ pkg.pkg }-${ pkgFile.version }.crate", + "name": "${ pkg.pkg }-${ pkgFile.version }.crate" + } + ] + } + }, + "packages": { + "wry": { + "path": "./", + "manager": "rust" + } + } +} diff --git a/.changes/covector-init.md b/.changes/covector-init.md new file mode 100644 index 000000000..1a678df0d --- /dev/null +++ b/.changes/covector-init.md @@ -0,0 +1,5 @@ +--- +"wry": housekeeping +--- + +Initialize covector! diff --git a/.changes/readme.md b/.changes/readme.md new file mode 100644 index 000000000..5c2b35efe --- /dev/null +++ b/.changes/readme.md @@ -0,0 +1,31 @@ +# Changes + +##### via https://github.com/jbolda/covector + +As you create PRs and make changes that require a version bump, please add a new markdown file in this folder. You do not note the version _number_, but rather the type of bump that you expect: major, minor, or patch. The filename is not important, as long as it is a `.md`, but we recommend that it represents the overall change for organizational purposes. + +When you select the version bump required, you do _not_ need to consider dependencies. Only note the package with the actual change, and any packages that depend on that package will be bumped automatically in the process. + +Use the following format: + +```md +--- +"package-a": patch +"package-b": minor +--- + +Change summary goes here + +``` + +Summaries do not have a specific character limit, but are text only. These summaries are used within the (future implementation of) changelogs. They will give context to the change and also point back to the original PR if more details and context are needed. + +Changes will be designated as a `major`, `minor` or `patch` as further described in [semver](https://semver.org/). + +Given a version number MAJOR.MINOR.PATCH, increment the: + +- MAJOR version when you make incompatible API changes, +- MINOR version when you add functionality in a backwards compatible manner, and +- PATCH version when you make backwards compatible bug fixes. + +Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format, but will be discussed prior to usage (as extra steps will be necessary in consideration of merging and publishing). diff --git a/.github/workflows/covector-status.yml b/.github/workflows/covector-status.yml new file mode 100644 index 000000000..72f9bee13 --- /dev/null +++ b/.github/workflows/covector-status.yml @@ -0,0 +1,16 @@ +name: covector status +on: [pull_request] + +jobs: + covector: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: covector status + uses: jbolda/covector/packages/action@covector-v0 + id: covector + with: + command: 'status' diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml new file mode 100644 index 000000000..4e72493a7 --- /dev/null +++ b/.github/workflows/covector-version-or-publish.yml @@ -0,0 +1,46 @@ +name: version or publish + +on: + push: + branches: + - master + +jobs: + version-or-publish: + runs-on: ubuntu-latest + timeout-minutes: 65 + outputs: + change: ${{ steps.covector.outputs.change }} + commandRan: ${{ steps.covector.outputs.commandRan }} + successfulPublish: ${{ steps.covector.outputs.successfulPublish }} + + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: cargo login + run: cargo login ${{ secrets.ORG_CRATE_TOKEN }} + - 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 or publish (publish when no change files present) + uses: jbolda/covector/packages/action@covector-v0 + id: covector + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + CARGO_AUDIT_OPTIONS: ${{ secrets.CARGO_AUDIT_OPTIONS }} + with: + token: ${{ secrets.GITHUB_TOKEN }} + command: 'version-or-publish' + createRelease: true + - name: Create Pull Request With Versions Bumped + id: cpr + uses: peter-evans/create-pull-request@v3 + if: steps.covector.outputs.commandRan == 'version' + with: + title: "Publish New Versions" + commit-message: "publish new versions" + labels: "version updates" + branch: "release" + body: ${{ steps.covector.outputs.change }}