-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v2.0.0 - boundation, changelog, version bump
- Loading branch information
Showing
11 changed files
with
350 additions
and
228 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
day: sunday | ||
time: '00:00' | ||
timezone: Australia/Perth | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: weekly | ||
day: sunday | ||
time: '00:00' | ||
timezone: Australia/Perth | ||
open-pull-requests-limit: 0 |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,15 +8,12 @@ jobs: | |
matrix: | ||
os: | ||
- ubuntu-latest | ||
- macos-latest | ||
- windows-latest | ||
node: | ||
- '16' | ||
- '18' | ||
- '20' | ||
- '21' | ||
runs-on: ${{ matrix.os }} | ||
continue-on-error: ${{ contains('macos-latest windows-latest', matrix.os) }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install Deno | ||
|
@@ -66,7 +63,7 @@ jobs: | |
- run: npm run our:compile | ||
- run: npm run our:meta | ||
- name: publish to npm | ||
uses: bevry-actions/[email protected].0 | ||
uses: bevry-actions/[email protected].1 | ||
with: | ||
npmAuthToken: ${{ secrets.NPM_AUTH_TOKEN }} | ||
npmBranchTag: ':next' | ||
|
@@ -75,3 +72,15 @@ jobs: | |
with: | ||
surgeLogin: ${{ secrets.SURGE_LOGIN }} | ||
surgeToken: ${{ secrets.SURGE_TOKEN }} | ||
automerge: | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
if: github.actor == 'dependabot[bot]' | ||
steps: | ||
- name: Enable auto-merge for Dependabot PRs | ||
run: gh pr merge --auto --merge "$PR_URL" | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
This project uses [Bevry's automated tooling](https://github.com/bevry/boundation) to bring the latest version and its updates to every ecosystem version that this project supports, maintaining compatibility with far-reaching ecosystem versions, without losing any capabilities. | ||
|
||
[Refer to supported ecosystem versions (`Editions` section in `README.md`).](https://github.com/bevry/wait/blob/master/README.md#Editions) | ||
|
||
[Refer to continued automated support of ecosystem versions (`boundation` entries in `HISTORY.md`).](https://github.com/bevry/wait/blob/master/HISTORY.md) | ||
|
||
## Reporting a Vulnerability | ||
|
||
[Report the vulnerability to the project owners.](https://github.com/bevry/wait/security/advisories) | ||
|
||
[Report the vulnerability to Tidelift.](https://tidelift.com/security) |
Oops, something went wrong.