@mafintosh/ci-testing 2.0.1-beta.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,22 @@
1
+ name: Publish
2
+ on:
3
+ pull_request:
4
+ types: [closed]
5
+ branches:
6
+ - main
7
+ jobs:
8
+ approve-release:
9
+ if: "${{ github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, 'Release: ') }}"
10
+ runs-on: ubuntu-latest
11
+ environment: release
12
+ steps:
13
+ - run: echo "Approved"
14
+ publish:
15
+ needs: approve-release
16
+ if: "${{ github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, 'Release: ') }}"
17
+ permissions:
18
+ contents: write
19
+ id-token: write
20
+ uses: mafintosh/actions/.github/workflows/auto-publish.yml@main
21
+ secrets:
22
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package/README.md CHANGED
@@ -1 +1 @@
1
- hello
1
+ hello world
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mafintosh/ci-testing",
3
- "version": "2.0.1-beta.0",
3
+ "version": "2.0.1",
4
4
  "description": "hello",
5
5
  "homepage": "https://github.com/mafintosh/ci-testing#readme",
6
6
  "bugs": {