Skip to content

Commit

Permalink
Merge commit 'be98c23a9fdbdd30caa9b607f2cf44a56b4cd0a3' into ci-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mjameswh committed Sep 1, 2023
2 parents b935256 + be98c23 commit 6ccb4ac
Show file tree
Hide file tree
Showing 126 changed files with 5,046 additions and 1,937 deletions.
11 changes: 11 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @temporalio/sdk will be requested for review when
# someone opens a pull request.
* @temporalio/sdk

# Security team must approve exceptions to static analysis
# scans, and any custom rules.

.semgrepignore @temporalio/security
.semgrep/ @temporalio/security
25 changes: 25 additions & 0 deletions .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Semgrep
on:
workflow_dispatch: {}
pull_request: {}
push:
branches:
- main
- master
paths:
- .github/workflows/semgrep.yml
schedule:
# random HH:MM to avoid a load spike on GitHub Actions at 00:00
- cron: '14 20 * * *'
jobs:
semgrep:
name: semgrep/ci
runs-on: ubuntu-20.04
env:
SEMGREP_APP_TOKEN: ${{ secrets.SEMGREP_APP_TOKEN }}
container:
image: returntocorp/semgrep
if: (github.actor != 'dependabot[bot]')
steps:
- uses: actions/checkout@v3
- run: semgrep ci
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ packages/test/protos/root.d.ts
packages/testing/test-server*
packages/testing/generated-protos/
packages/core-bridge/releases
packages/*/package-lock.json
packages/*/package-lock.json
/sdk-node.iml
*~
253 changes: 251 additions & 2 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.7.4",
"version": "1.8.4",
"npmClient": "npm",
"command": {
"publish": {
Expand Down
Loading

0 comments on commit 6ccb4ac

Please sign in to comment.