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 /.github/workflows | |
| parent | 1c51c72d20880902f78573b5bd28a5462dfd1429 (diff) | |
| download | faker-2cd599a2b57fc7da3369f84465bd9f5e35f19623.tar.xz faker-2cd599a2b57fc7da3369f84465bd9f5e35f19623.zip | |
chore: format .github (#65)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/issue-labeling.yml | 8 |
2 files changed, 7 insertions, 7 deletions
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' |
