-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into feature/support-add…
…ing-multiple-users-in-a-single-message * origin/master: (103 commits) feat: commit conventions (#343) refactor: remove unnecessary error handling (#410) chore: fix codecov (#409) chore: remove all Slack references (#407) docs: add tenshiAMD as a contributor for code, maintenance, bug, review, test (#408) chore(deps): bump validator and smee-client (#406) fix(deps): bump `all-contributors-cli` (#404) fix(package): bump `all-contributors-cli` (#403) chore(deps): bump async from 3.2.1 to 3.2.3 (#396) chore(deps): bump eventsource from 1.1.0 to 1.1.1 chore(deps): bump minimist from 1.2.5 to 1.2.6 chore(deps): bump url-parse from 1.5.7 to 1.5.10 chore(deps): bump node-fetch from 2.6.5 to 2.6.7 chore(deps): bump url-parse from 1.5.3 to 1.5.7 fix: bump max number of files to 25 (#385) docs: add aaltat as a contributor for bug (#383) fix: set `webhooksPath` correctly fix: Probot v12 (#381) chore(deps): bump hosted-git-info from 2.8.8 to 2.8.9 chore(deps): bump semver-regex from 3.1.2 to 3.1.3 ...
- Loading branch information
Showing
114 changed files
with
18,967 additions
and
11,584 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,19 @@ | ||
name: Release | ||
"on": | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
release: | ||
name: release | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
cache: npm | ||
node-version: 16 | ||
- run: npm ci | ||
- run: npx semantic-release | ||
env: | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
on: | ||
schedule: | ||
# https://crontab.guru/once-a-day | ||
- cron: 0 0 * * * | ||
workflow_dispatch: {} | ||
|
||
name: Stats | ||
jobs: | ||
stats: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: gr2m/[email protected] | ||
id: stats | ||
with: | ||
id: ${{ secrets.ALL_CONTRIBUTORS_APP_ID }} | ||
private_key: ${{ secrets.ALL_CONTRIBUTORS_APP_PRIVATE_KEY }} | ||
- run: "echo installations: '${{ steps.stats.outputs.installations }}'" | ||
- run: "echo most popular repositories: '${{ steps.stats.outputs.popular_repositories }}'" | ||
- uses: logflare/action@v1 | ||
with: | ||
api_key: ${{ secrets.LOGFLARE_API_KEY }} | ||
source_id: ${{ secrets.LOGFLARE_SOURCE_ID }} | ||
message: "stats: ${{ steps.stats.outputs.installations }} / ${{ steps.stats.outputs.repositories }}" | ||
metadata: | | ||
{ | ||
"num_installations": ${{ steps.stats.outputs.installations }}, | ||
"num_repositories": ${{ steps.stats.outputs.repositories }}, | ||
"num_suspended_installations": ${{ steps.stats.outputs.suspended_installations }} | ||
} |
Oops, something went wrong.