Adding GitLab pipeline. #75
Workflow file for this run
This file contains 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
name: 'Apply latest configuration to Fleet' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: # allows manual triggering | |
# Prevent concurrent runs of this workflow. | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
defaults: | |
run: | |
shell: bash | |
# Limit permissions of GITHUB_TOKEN. | |
permissions: | |
contents: read | |
jobs: | |
fleet-gitops: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GitOps repository | |
uses: actions/checkout@v4 | |
- name: Apply latest configuration to Fleet | |
uses: ./.github/gitops-action | |
with: | |
# Run GitOps in dry-run mode for pull requests. | |
dry-run-only: ${{ github.event_name == 'pull_request' && 'true' || 'false' }} | |
# Add FLEET_URL and FLEET_API_TOKEN to the repository secrets. | |
# In addition, specify or add secrets for all the environment variables that are mentioned in the global/team YAML files. | |
env: | |
FLEET_URL: ${{ secrets.FLEET_URL }} | |
FLEET_API_TOKEN: ${{ secrets.FLEET_API_TOKEN }} | |
FLEET_GLOBAL_ENROLL_SECRET: ${{ secrets.FLEET_GLOBAL_ENROLL_SECRET }} | |
FLEET_WORKSTATIONS_ENROLL_SECRET: ${{ secrets.FLEET_WORKSTATIONS_ENROLL_SECRET }} | |
FLEET_WORKSTATIONS_CANARY_ENROLL_SECRET: ${{ secrets.FLEET_WORKSTATIONS_CANARY_ENROLL_SECRET }} |