diff options
| author | Shinigami <[email protected]> | 2022-01-10 17:49:57 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-10 11:49:57 -0500 |
| commit | 2cd599a2b57fc7da3369f84465bd9f5e35f19623 (patch) | |
| tree | c7346688d7e2e9ff53500074b57a8895970b02ae | |
| parent | 1c51c72d20880902f78573b5bd28a5462dfd1429 (diff) | |
| download | faker-2cd599a2b57fc7da3369f84465bd9f5e35f19623.tar.xz faker-2cd599a2b57fc7da3369f84465bd9f5e35f19623.zip | |
chore: format .github (#65)
| -rw-r--r-- | .github/ISSUE_TEMPLATE/feature_request.yml | 6 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/freestyle.md | 2 | ||||
| -rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/issue-labeling.yml | 8 |
4 files changed, 11 insertions, 11 deletions
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index 86d0cf78..3619e088 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -1,6 +1,6 @@ name: "\U0001F680 New feature proposal" description: Propose a new feature -labels: ["pending triage"] # This will automatically assign the 'pending triage' label +labels: ['pending triage'] # This will automatically assign the 'pending triage' label body: - type: markdown attributes: @@ -9,14 +9,14 @@ body: id: feature-description attributes: label: Clear and concise description of the problem - description: "As a developer using faker I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!" + description: 'As a developer using faker I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!' validations: required: true - type: textarea id: suggested-solution attributes: label: Suggested solution - description: "In module [xy] we could provide following implementation..." + description: 'In module [xy] we could provide following implementation...' validations: required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/freestyle.md b/.github/ISSUE_TEMPLATE/freestyle.md index 9bde1ad0..877e0335 100644 --- a/.github/ISSUE_TEMPLATE/freestyle.md +++ b/.github/ISSUE_TEMPLATE/freestyle.md @@ -1,5 +1,5 @@ --- name: Freestyle Report about: Create a report to help us improve -labels: "pending triage" # This will automatically assign the 'pending triage' label +labels: 'pending triage' # This will automatically assign the 'pending triage' label --- diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7accdb54..14bba905 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: "Continuous Integration" +name: 'Continuous Integration' on: push: @@ -9,7 +9,7 @@ on: jobs: test: runs-on: ubuntu-latest - name: "Testing" + name: 'Testing' needs: lint steps: - uses: actions/checkout@v2 @@ -21,7 +21,7 @@ jobs: - run: npm run test lint: runs-on: ubuntu-latest - name: "Linting" + name: 'Linting' steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 diff --git a/.github/workflows/issue-labeling.yml b/.github/workflows/issue-labeling.yml index a9bbaaac..7ea154f4 100644 --- a/.github/workflows/issue-labeling.yml +++ b/.github/workflows/issue-labeling.yml @@ -13,12 +13,12 @@ jobs: if: github.event.label.name == 'help wanted' uses: actions-cool/issues-helper@v2 with: - actions: "create-comment, remove-labels" + actions: 'create-comment, remove-labels' token: ${{ secrets.GITHUB_TOKEN }} issue-number: ${{ github.event.issue.number }} body: | Hello @${{ github.event.issue.user.login }}. We like your proposal/feedback and would appreciate a contribution via a Pull Request by you or another community member. We thank you in advance for your contribution and are looking forward to reviewing it! - labels: "pending triage" + labels: 'pending triage' - name: remove pending # If the issue is given either the 'enhancement' or 'bug' label, the 'pending triage' label will be removed @@ -26,7 +26,7 @@ jobs: if: github.event.label.name == 'enhancement' || github.event.label.name == 'bug' || (contains(github.event.label.name, 'pending triage') == false) uses: actions-cool/issues-helper@v2 with: - actions: "remove-labels" + actions: 'remove-labels' token: ${{ secrets.GITHUB_TOKEN }} issue-number: ${{ github.event.issue.number }} - labels: "pending triage" + labels: 'pending triage' |
