forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Open a pull request #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Co-authored-by: Jules <[email protected]>
Co-authored-by: Chuan-kai Lin <[email protected]> Co-authored-by: Copilot <[email protected]>
Repo sync
Co-authored-by: Sharra-writes <[email protected]>
Co-authored-by: Joe Clark <[email protected]>
Repo sync
Repo sync
…6023) Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: felicitymay <[email protected]> Co-authored-by: Felicity Chapman <[email protected]> Co-authored-by: nhu-do <[email protected]>
Repo sync
… to handle Copilot-authored PRs"""" (#56024)
Co-authored-by: Copilot <[email protected]> Co-authored-by: Tadas Labudis <[email protected]> Co-authored-by: Ben Ahmady <[email protected]>
Repo sync
Co-authored-by: Copilot <[email protected]> Co-authored-by: Sunbrye Ly <[email protected]> Co-authored-by: sunbrye <[email protected]>
Repo sync
Co-authored-by: Jules Porter <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: Adam Holt <[email protected]> Co-authored-by: Sarita Iyer <[email protected]> Co-authored-by: Sam Morrow <[email protected]>
Repo sync
Co-authored-by: Jules Porter <[email protected]> Co-authored-by: Jules <[email protected]> Co-authored-by: Copilot <[email protected]> Co-authored-by: Adam Holt <[email protected]> Co-authored-by: Sam Morrow <[email protected]> Co-authored-by: Sunbrye Ly <[email protected]>
…(#56028) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Repo sync
Co-authored-by: Kevin Heis <[email protected]>
Repo sync
Co-authored-by: Isaac Brown <[email protected]>
Co-authored-by: Vanessa <[email protected]> Co-authored-by: Copilot <[email protected]>
Repo sync
Co-authored-by: Sharra-writes <[email protected]>
… agent [Public Preview] (#56002) Co-authored-by: hubwriter <[email protected]>
Repo sync
Co-authored-by: Sunbrye Ly <[email protected]>
Repo sync
…be to 20250619-223112-g14de19c1f in the baseimages group (#56195) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…ed (#56167) Co-authored-by: Vanessa <[email protected]>
Repo sync
…#56014) Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: am-stead <[email protected]> Co-authored-by: elbrenn <[email protected]>
Repo sync
Co-authored-by: Alex Nguyen <[email protected]>
Repo sync
Co-authored-by: mc <[email protected]>
Repo sync
Repository owner
locked as spam and limited conversation to collaborators
Jun 29, 2025
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Why:
Closes:
What's being changed (if available, include any code snippets, screenshots, or gifs):
Check off the following:
Upgraded V2 : VVIP Audit - CI/CD & Automated Security Certification
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
กำหนดค่ากลางสำหรับทุกคลาวด์
GCP_PROJECT_ID: your-gcp-project-id
AWS_REGION: ap-southeast-1
AZURE_APP_NAME: vvip-audit-app
IMAGE_NAME: vvip-audit # ชื่อ Image กลาง
jobs:
--- Job 1: ตรวจสอบคุณภาพโค้ดพื้นฐาน ---
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
--- Job 2: ประตูรักษาความปลอดภัยและออกใบรับรองอัตโนมัติ ---
security-audit:
name: Automated Security Certification
needs: lint
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v4
--- Job 3: สร้างและสแกน Docker Image ---
build-and-push:
name: Build, Scan, and Push Docker Image
needs: security-audit
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout code
uses: actions/checkout@v4
--- Job 4: ปรับใช้ (Upload) สู่คลาวด์ ---
deploy:
name: Deploy to Cloud
needs: build-and-push
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
#... (ส่วนที่เหลือของ Job deploy เหมือนเดิม)...
git init
git add .
git commit -m "Initial VVIP Security Audit Project"
git remote add origin https://github.com/USERNAME/REPO.git
git branch -M main
git push -u origin main