Skip to content

Commit

Permalink
Update actions, documentation templates and configuration files to v0…
Browse files Browse the repository at this point in the history
….7.2 (#477)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
47erbot and github-actions[bot] authored Apr 20, 2020
1 parent bcb3da0 commit e40d18a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bot-prs-auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: hmarr/auto-approve-action@v2.0.0
if: github.actor == 'developer47deg'
if: github.actor == '47erbot'
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
REQUIRES_JEKYLL_CI: ${{secrets.REQUIRES_JEKYLL_CI}}
REQUIRES_CODECOV: ${{secrets.REQUIRES_CODECOV}}
steps:
- name: Checkout project
uses: actions/checkout@v2
Expand All @@ -30,6 +31,11 @@ jobs:
if: env.REQUIRES_JEKYLL_CI != null
run: |
gem install jekyll -v 4
- name: Set up codecov
if: env.REQUIRES_CODECOV != null
run: |
curl -s https://codecov.io/bash > .codecov
chmod +x .codecov
- name: Setup Scala
uses: olafurpg/setup-scala@v7
- name: Cache dependencies
Expand All @@ -46,3 +52,7 @@ jobs:
restore-keys: ${{ runner.os }}-sbt-
- name: Run checks
run: sbt ci-test
- name: Upload codecov reports
if: env.REQUIRES_CODECOV != null
run: |
./.codecov -X gcov
4 changes: 2 additions & 2 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ pull_request_rules:
method: squash
label:
add: [scala-steward]
- name: automatically merge & label developer47deg's PRs
- name: automatically merge & label 47erbot's PRs
conditions:
- author=developer47deg
- author=47erbot
- status-success=test
actions:
merge:
Expand Down

0 comments on commit e40d18a

Please sign in to comment.