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
4 changes: 2 additions & 2 deletions .github/workflows/sync-codeql-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Sync the CodeQL CLI data
run: |
src/codeql-cli/scripts/sync.js
npm run sync-codeql-cli
git status
echo "Deleting the cloned github/semmle-code repo..."
rm -rf semmle-code
Expand All @@ -81,7 +81,7 @@ jobs:
changes=$(git diff --name-only | wc -l)
untracked=$(git status --untracked-files --short | wc -l)
if [[ $changes -eq 0 ]] && [[ $untracked -eq 0 ]]; then
echo "There are no changes to commit after running src/codeql/scripts/sync.js. Exiting..."
echo "There are no changes to commit after running 'npm run sync-codeql-cli'. Exiting..."
exit 0
fi

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% ifversion repo-policy-rules %}

[!NOTE] Repository policy delegated bypass is in {% data variables.release-phases.public_preview %} and subject to change.
> [!NOTE] Repository policy delegated bypass is in {% data variables.release-phases.public_preview %} and subject to change.

Delegated bypass for repository policies lets you control who can bypass repository policies for repository deletions and visibility changes.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Managing requests to bypass push rules

[!NOTE] Repository policy delegated bypass is in {% data variables.release-phases.public_preview %} and subject to change.
> [!NOTE] Repository policy delegated bypass is in {% data variables.release-phases.public_preview %} and subject to change.

You can view and manage all requests for bypass privileges on the “Bypass Requests" page, located under the **Policy** settings.

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
"start-for-playwright": "cross-env ROOT=src/fixtures/fixtures TRANSLATIONS_FIXTURE_ROOT=src/fixtures/fixtures/translations ENABLED_LANGUAGES=en,ja NODE_ENV=test tsx src/frame/server.ts",
"symlink-from-local-repo": "tsx src/early-access/scripts/symlink-from-local-repo.js",
"sync-audit-log": "tsx src/audit-logs/scripts/sync.ts",
"sync-codeql-cli": "tsx src/codeql-cli/scripts/sync.js",
"sync-graphql": "tsx src/graphql/scripts/sync.js",
"sync-rest": "tsx src/rest/scripts/update-files.ts",
"sync-secret-scanning": "tsx src/secret-scanning/scripts/sync.ts",
Expand Down
Loading