Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions, documentation templates and configuration files to v0.7.2 #477

Merged
merged 1 commit into from
Apr 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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