mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-24 14:23:05 +00:00
21 lines
488 B
YAML
21 lines
488 B
YAML
---
|
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
name: update galaxy
|
|
|
|
# Controls when the action will run.
|
|
# Triggers the workflow on merge request events to the main branch
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
update_role:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: robertdebock/galaxy-action@master
|
|
with:
|
|
galaxy_api_key: ${{ secrets.GALAXY_API_KEY }}
|
|
git_branch: main
|