Skip to content
Closed
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
27 changes: 27 additions & 0 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Copilot Setup Steps

on:
workflow_dispatch:
pull_request:
paths: [".github/workflows/copilot-setup-steps.yml"]

permissions:
contents: read

jobs:
copilot-setup-steps:
runs-on:
group: ubuntu-copilot-core
container:
image: europe-west3-docker.pkg.dev/flink-core-shared/copilot-container-images/golang:v1
options: --volume /home/runner:/home/runner --cap-add=NET_ADMIN --cap-add=NET_RAW
permissions:
contents: read

steps:
- uses: actions/checkout@v6

- name: Copilot Setup Go
uses: goflink/github-actions/copilot-setup-go@v2
with:
copilot-ssh-key: ${{ secrets.COPILOT_PRIVATE_SSH_KEY }}
Loading