The-Standard-Organization / ADotNet

ADotNet is a.NET library that enables software engineers on the .NET platform to develop AzureDevOps pipelines and Git Actions in C#.
98 stars 34 forks source link

MODELS: Allow for tag configuration on Github PushEvent #56

Closed Catalin-Andronie closed 1 year ago

Catalin-Andronie commented 1 year ago

I would like to have the ability to trigger GitHub workflow runs on push events for specific tags. Reference pipeline:

name: .Net
on:
  push:
    tags:
    - *
    - RELEASES
    - version/v1
    branches:
    - master
...