Update to version 3.0.0.1 🌇 #53
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
# This is a basic workflow to help you get started with Actions | |
name: Copy Files to microsoft/CSS-SystemCenter-OperationsManager | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the "master" branch | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
env: | |
API_TOKEN_GITHUB: ${{ secrets.PAT }} | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: Push Powershell directory to microsoft/CSS-SystemCenter-OperationsManager | |
# You may pin to the exact commit or the version. | |
# uses: datalbry/copy_folder_to_another_repo_action@f4ceec0eb4df6da5e4fe043dbc38c698a8ff4401 | |
uses: datalbry/[email protected] | |
with: | |
# Source folder from the origin directory | |
source_folder: Powershell | |
# Destination repository | |
destination_repo: microsoft/CSS-SystemCenter-OperationsManager | |
# Directory to push the folder contents to | |
destination_folder: Powershell | |
# Email for the git commit | |
user_email: [email protected] | |
# GitHub username for the commit | |
user_name: blakedrumm | |
# branch to push folder to, defaults to master | |
destination_branch: main | |
# The commit message | |
commit_msg: 'Synchronized with `SCOM-Scripts-and-SQL` :fireworks: :star2:' | |
# Destination branch to create for this commit | |
#destination_branch_create: # optional | |
- name: Push SQL directory to microsoft/CSS-SystemCenter-OperationsManager | |
# You may pin to the exact commit or the version. | |
# uses: datalbry/copy_folder_to_another_repo_action@f4ceec0eb4df6da5e4fe043dbc38c698a8ff4401 | |
uses: datalbry/[email protected] | |
with: | |
# Source folder from the origin directory | |
source_folder: 'SQL Queries' | |
# Destination repository | |
destination_repo: microsoft/CSS-SystemCenter-OperationsManager | |
# Directory to push the folder contents to | |
destination_folder: 'SQL Queries' | |
# Email for the git commit | |
user_email: [email protected] | |
# GitHub username for the commit | |
user_name: blakedrumm | |
# branch to push folder to, defaults to master | |
destination_branch: main | |
# The commit message | |
commit_msg: 'Synchronized with `SCOM-Scripts-and-SQL` :fireworks: :star2:' | |
# Destination branch to create for this commit | |
#destination_branch_create: # optional | |
- name: Push ManagementPacks directory to microsoft/CSS-SystemCenter-OperationsManager | |
# You may pin to the exact commit or the version. | |
# uses: datalbry/copy_folder_to_another_repo_action@f4ceec0eb4df6da5e4fe043dbc38c698a8ff4401 | |
uses: datalbry/[email protected] | |
with: | |
# Source folder from the origin directory | |
source_folder: 'ManagementPacks' | |
# Destination repository | |
destination_repo: microsoft/CSS-SystemCenter-OperationsManager | |
# Directory to push the folder contents to | |
destination_folder: 'ManagementPacks' | |
# Email for the git commit | |
user_email: [email protected] | |
# GitHub username for the commit | |
user_name: blakedrumm | |
# branch to push folder to, defaults to master | |
destination_branch: main | |
# The commit message | |
commit_msg: 'Synchronized with `SCOM-Scripts-and-SQL` :fireworks: :star2:' | |
# Destination branch to create for this commit | |
#destination_branch_create: # optional |