diff options
| author | Yong He <yonghe@outlook.com> | 2025-07-01 20:45:02 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-02 03:45:02 +0000 |
| commit | 415adcfd774d30d90e62d15bb7b814464f6930a6 (patch) | |
| tree | 1c4878e36fe16b63106b9eff045e922ed6f67790 /.github/workflows | |
| parent | c701ec00ccce6dfa8094d6550ce2db929fc8cefe (diff) | |
Add copilot environment configuration. (#7586)
* Add copilot environment configuration.
* Add instructions.
* format code
---------
Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/copilot-setup-steps.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/copilot-setup-steps.yml b/.github/workflows/copilot-setup-steps.yml new file mode 100644 index 000000000..fe47a7778 --- /dev/null +++ b/.github/workflows/copilot-setup-steps.yml @@ -0,0 +1,32 @@ +name: "Copilot Setup Steps" + +# Automatically run the setup steps when they are changed to allow for easy validation, and +# allow manual testing through the repository's "Actions" tab +on: + workflow_dispatch: + push: + paths: + - .github/workflows/copilot-setup-steps.yml + pull_request: + paths: + - .github/workflows/copilot-setup-steps.yml + +jobs: + copilot-setup-steps: + runs-on: ubuntu-latest + + permissions: + contents: read + pull-requests: write + checks: write + + steps: + - uses: actions/checkout@v4 + with: + submodules: "recursive" + fetch-depth: "2" + - uses: ./.github/actions/format-setup + - name: setup environment + run: | + sudo apt-get update + sudo apt-get install -y libx11-dev |
