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
20 changes: 16 additions & 4 deletions .github/workflows/codesee-arch-diagram.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
# This workflow was added by CodeSee. Learn more at https://codesee.io/
on:
push:
branches:
- main
pull_request_target:
types: [opened, synchronize, reopened]
types:
- opened
- synchronize
- reopened

name: CodeSee Map

permissions: read-all

jobs:
test_map_action:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -54,13 +60,19 @@ jobs:
with:
ruby-version: '3.0'

# CodeSee Maps Rust support uses a static binary so there's no setup step required.
# We need the rust toolchain because it uses rustc and cargo to inspect the package
- name: Configure Rust 1.x stable
uses: actions-rs/toolchain@v1
if: ${{ fromJSON(steps.detect-languages.outputs.languages).rust }}
with:
toolchain: stable

- name: Generate Map
id: generate-map
uses: Codesee-io/codesee-map-action@latest
with:
step: map
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
github_ref: ${{ github.ref }}
languages: ${{ steps.detect-languages.outputs.languages }}

Expand All @@ -71,11 +83,11 @@ jobs:
step: mapUpload
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
github_ref: ${{ github.ref }}

- name: Insights
id: insights
uses: Codesee-io/codesee-map-action@latest
with:
step: insights
api_token: ${{ secrets.CODESEE_ARCH_DIAG_API_TOKEN }}
github_ref: ${{ github.ref }}
github_ref: ${{ github.ref }}
3 changes: 2 additions & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Dependabot auto-merge
name: Dependabot Auto-Merge

on: pull_request

permissions:
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
name: "Snyk: Node"
on:
push:
branches:
- main
pull_request:

on: push

permissions: write-all

Expand All @@ -14,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Snyk Scan
uses: snyk/actions/node@0.3.0
uses: snyk/actions/node@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: SonarCloud Analysis

on:
pull_request:
push:
branches:
- main
pull_request_target:
types:
- opened
- synchronize
- reopened

permissions:
pull-requests: read
Expand All @@ -12,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Analyze
uses: SonarSource/sonarcloud-github-action@v1.7
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand Down
3 changes: 1 addition & 2 deletions beta/workflows/beta-compile.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Beta Compile

on:
pull_request:
on: pull_request

jobs:
build:
Expand Down