Rename master branch to main

This commit is contained in:
Daniel Huigens 2021-11-23 12:10:57 +01:00
parent 6da1c53de7
commit 9e547bf6e4
7 changed files with 21 additions and 21 deletions

View File

@ -2,7 +2,7 @@ name: Performance Regression Test
on: on:
pull_request: pull_request:
branches: [master] branches: [main]
jobs: jobs:
benchmark: benchmark:
@ -14,11 +14,11 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
path: pr path: pr
# check out master branch (to compare performance) # check out main branch (to compare performance)
- uses: actions/checkout@v2 - uses: actions/checkout@v2
with: with:
ref: master ref: main
path: master path: main
- uses: actions/setup-node@v1 - uses: actions/setup-node@v1
with: with:
node-version: '15' node-version: '15'
@ -29,11 +29,11 @@ jobs:
- name: Run pull request memory usage benchmark - name: Run pull request memory usage benchmark
run: cd pr && npm run --silent benchmark-memory-usage > memory_usage.txt && cat memory_usage.txt run: cd pr && npm run --silent benchmark-memory-usage > memory_usage.txt && cat memory_usage.txt
- name: Run time benchmark on master (baseline) - name: Run time benchmark on main (baseline)
run: cd master && npm install && npm run --silent benchmark-time > benchmarks.txt && cat benchmarks.txt run: cd main && npm install && npm run --silent benchmark-time > benchmarks.txt && cat benchmarks.txt
- name: Run memory usage benchmark on master (baseline) - name: Run memory usage benchmark on main (baseline)
run: cd master && npm run --silent benchmark-memory-usage > memory_usage.txt && cat memory_usage.txt run: cd main && npm run --silent benchmark-memory-usage > memory_usage.txt && cat memory_usage.txt
- name: Compare time benchmark result - name: Compare time benchmark result
uses: openpgpjs/github-action-pull-request-benchmark@v1 uses: openpgpjs/github-action-pull-request-benchmark@v1
@ -41,7 +41,7 @@ jobs:
tool: 'benchmarkjs' tool: 'benchmarkjs'
name: 'Time benchmark' name: 'Time benchmark'
pr-benchmark-file-path: pr/benchmarks.txt pr-benchmark-file-path: pr/benchmarks.txt
base-benchmark-file-path: master/benchmarks.txt base-benchmark-file-path: main/benchmarks.txt
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
# trigger alert comment if 1.3 times slower # trigger alert comment if 1.3 times slower
alert-threshold: '130%' alert-threshold: '130%'
@ -57,7 +57,7 @@ jobs:
tool: 'raw' tool: 'raw'
name: 'Memory usage benchmark' name: 'Memory usage benchmark'
pr-benchmark-file-path: pr/memory_usage.txt pr-benchmark-file-path: pr/memory_usage.txt
base-benchmark-file-path: master/memory_usage.txt base-benchmark-file-path: main/memory_usage.txt
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
alert-threshold: '102%' alert-threshold: '102%'
comment-on-alert: false comment-on-alert: false

View File

@ -2,9 +2,9 @@ name: Test on Browserstack
on: on:
push: push:
branches: [master] branches: [main]
pull_request: pull_request:
branches: [master] branches: [main]
jobs: jobs:
full: full:

View File

@ -2,9 +2,9 @@ name: Documentation
on: on:
push: push:
branches: [master] branches: [main]
pull_request: pull_request:
branches: [master] branches: [main]
jobs: jobs:
lint: lint:

View File

@ -2,9 +2,9 @@ name: Lint
on: on:
push: push:
branches: [master] branches: [main]
pull_request: pull_request:
branches: [master] branches: [main]
jobs: jobs:
lint: lint:

View File

@ -5,9 +5,9 @@ name: Test on Node.js
on: on:
push: push:
branches: [master] branches: [main]
pull_request: pull_request:
branches: [master] branches: [main]
jobs: jobs:
build: build:

View File

@ -2,9 +2,9 @@ name: Types
on: on:
push: push:
branches: [master] branches: [main]
pull_request: pull_request:
branches: [master] branches: [main]
jobs: jobs:
lint: lint:

View File

@ -165,7 +165,7 @@ To offload cryptographic operations off the main thread, you can implement a Web
### Examples ### Examples
Here are some examples of how to use OpenPGP.js v5. For more elaborate examples and working code, please check out the [public API unit tests](https://github.com/openpgpjs/openpgpjs/blob/master/test/general/openpgp.js). If you're upgrading from v4 it might help to check out the [changelog](https://github.com/openpgpjs/openpgpjs/wiki/V5-Changelog) and [documentation](https://github.com/openpgpjs/openpgpjs#documentation). Here are some examples of how to use OpenPGP.js v5. For more elaborate examples and working code, please check out the [public API unit tests](https://github.com/openpgpjs/openpgpjs/blob/main/test/general/openpgp.js). If you're upgrading from v4 it might help to check out the [changelog](https://github.com/openpgpjs/openpgpjs/wiki/V5-Changelog) and [documentation](https://github.com/openpgpjs/openpgpjs#documentation).
#### Encrypt and decrypt *Uint8Array* data with a password #### Encrypt and decrypt *Uint8Array* data with a password