diff --git a/.github/boring-cyborg.yml b/.github/boring-cyborg.yml new file mode 100644 index 0000000..b95677c --- /dev/null +++ b/.github/boring-cyborg.yml @@ -0,0 +1,28 @@ +##### Labeler ########################################################################################################## +# Enable "labeler" for your PR that would add labels to PRs based on the paths that are modified in the PR. +labelPRBasedOnFilePath: + documentation: + - www/**/* + - README.md + + clockify: + - internal/pkg/client/clockify/**/* + + tempo: + - internal/pkg/client/tempo/**/* + + timewarrior: + - internal/pkg/client/timewarrior/**/* + + toggl: + - internal/pkg/client/toggl/**/* + +##### Greetings ######################################################################################################## +firstPRWelcomeComment: > + Thanks for opening this pull request! While we review your pull request, please check out our contributing guidelines. + +firstPRMergeComment: > + Awesome work, congrats on your first merged pull request! :tada: + +firstIssueWelcomeComment: > + Thanks for opening your first issue here! Be sure to follow the issue template and provide as much information as you can. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9ca66e1..db83793 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,6 +31,8 @@ jobs: run: make lint - name: Test run: make test + - name: Build + run: make build - name: Stash test results uses: actions/upload-artifact@master with: @@ -56,19 +58,3 @@ jobs: with: prefix: github.com/${{github.repository}} coverageLocations: ${{github.workspace}}/.coverage.out:gocov - - build: - name: build - runs-on: ubuntu-latest - needs: - - test - steps: - - uses: actions/checkout@v2 - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: '1.17' - - name: Prerequisites - run: make prerequisites - - name: Build - run: make build diff --git a/.github/workflows/pr-welcome.yml b/.github/workflows/pr-welcome.yml deleted file mode 100644 index 4c8801e..0000000 --- a/.github/workflows/pr-welcome.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: PR Welcome - -'on': - pull_request_target: - types: - - opened - - edited - - reopened - -jobs: - welcome: - runs-on: ubuntu-latest - steps: - - uses: actions-cool/pr-welcome@v1 - with: - token: '${{ secrets.PR_WELCOME_TOKEN }}' - refuse-issue-label: invalid - need-creator-authority: write - comment: | - Hey :wave:, - - Thank you for your contribution! Your PR will be reviewed soon. - pr-emoji: 'hooray, heart' - reviewers: 'gabor-boros' - review-creator: false - close: false