Skip to content
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
6 changes: 6 additions & 0 deletions .github/workflows/pr_generate_manifests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,14 @@ jobs:
with:
version: v3.6.2
- name: update manifests
env:
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
if: env.NEXUS_PASSWORD != null
run: make generate-manifests
- name: Add & Commit
env:
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}
if: env.NEXUS_PASSWORD != null
uses: EndBug/add-and-commit@v7
with:
default_author: user_info
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
push:
branches:
- main
- staging
- trying
pull_request:

env:
Expand All @@ -32,9 +34,6 @@ jobs:
- uses: actions-rs/cargo@v1.0.3
with:
command: test
- uses: actions-rs/cargo@v1.0.3
with:
command: clean

rustfmt:
name: Run rustfmt
Expand Down Expand Up @@ -80,6 +79,7 @@ jobs:
toolchain: stable
components: clippy
override: true
- uses: Swatinem/rust-cache@v1.3.0
# We need this due to: https://github.com/actions-rs/clippy-check/issues/2
- name: Check workflow permissions
id: check_permissions
Expand Down
10 changes: 10 additions & 0 deletions bors.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
status = [
'Run tests',
'Run rustfmt',
'Run rustdoc',
'Run clippy',
'Run cargo deny (bans licenses sources)'
]
delete_merged_branches = true
pr_status = [ 'license/cla' ]
timeout_sec = 7200