Update Rule "Do you use screenshots instead of a 'Wall of Text'?" #2298
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
# Contributors: @wicksipedia @william-liebenberg | |
# < as per SSW.Rules: https://www.ssw.com.au/rules/standard-set-of-pull-request-workflows/ > | |
name: "PR - t-shirt size the pr" | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
triage: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
pull-requests: write | |
statuses: write | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: microsoft/[email protected] | |
name: PR Metrics | |
env: | |
PR_METRICS_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
base-size: 200 | |
growth-rate: 2.0 | |
test-factor: 1.0 | |
continue-on-error: true |