Add code owners, add triage ping, fix workflows #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test-next-push | |
on: | |
push: | |
branches: [ next ] | |
workflow_dispatch: | |
concurrency: prr:pre-release | |
jobs: | |
build: | |
uses: ./.github/workflows/test.yml | |
publish-prerelease: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- run: git clone --depth=1 https://github.com/MithrilJS/mithril.js.git && cd mithril.js | |
- uses: ./.github/actions/setup | |
- run: npm run build | |
- run: npx pr-release pr --verbose --target master --source next --compact --verbose --minimize-semver-change | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
# The following will publish a prerelease to npm | |
- run: echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" > ~/.npmrc | |
name: Setup NPM Auth | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- run: npx pr-release infer-prerelease --preid=next --target master --source next --verbose --publish --minimize-semver-change | |
name: Publish |