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
2 changes: 0 additions & 2 deletions .github/codeql-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
paths:
- src
- tests
paths-ignore:
- '**/failing_script.py'
6 changes: 5 additions & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,12 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
permissions:
contents: write
pull-requests: write
packages: read

jobs:
update-changelog:
name: "Update CHANGELOG (on release)"
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/nightly_docker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write
packages: write

jobs:

manifests:
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/2016.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
improving CodeQL
2 changes: 1 addition & 1 deletion tests/integration/files/disco_scripts/failing_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
u_range = Interval.Create(0, 2*math.pi)
v_range = Interval.Create(-math.pi/2, math.pi/2)
box = BoxUV.Create(u_range, v_range)
;
import numpy as np
b = Body.CreateSurfaceBody(sphere, box)
db = DesignBody.Create(doc.MainPart, "sphere", b)

Expand Down
Loading