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: 0 additions & 4 deletions .github/workflows/gemini-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ permissions:

jobs:
gemini-cli:
# This condition seeks to ensure the action is only run when it is triggered by a trusted user.
# For private repos, users who have access to the repo are considered trusted.
# For public repos, users who members, owners, or collaborators are considered trusted.
if: |-
github.event_name == 'workflow_dispatch' ||
(
Expand Down Expand Up @@ -109,7 +106,6 @@ jobs:
IS_PR="true"
fi

# Clean up user request
USER_REQUEST=$(echo "${USER_REQUEST}" | sed 's/.*@gemini-cli//' | sed 's/^[[:space:]]*//;s/[[:space:]]*$//')

{
Expand Down
17 changes: 10 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
# Dependencies

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-high high

Le titre et la description de la pull request indiquent une mise à jour de sécurité (SHA-pinning) pour le fichier gemini-cli.yml, mais ce fichier n'apparaît pas dans les modifications de cette PR. Veuillez vérifier si vous avez oublié d'inclure ce fichier dans votre commit.

node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Logs
*.log
logs/
# Netlify
.netlify/

# macOS
.DS_Store
Expand Down Expand Up @@ -50,7 +46,14 @@ dist/
.env.local
.env.*.local

# Misc
# Editor directories
.idea/
.vscode/
*.swp
*.swo
*~

# OS generated
Thumbs.db
ehthumbs.db
Desktop.ini
Loading