Skip to content

Commit

Permalink
Merge pull request #10 from microsoft/md/cionmore
Browse files Browse the repository at this point in the history
Trigger on pull requests and tags
  • Loading branch information
maxdymond authored Sep 26, 2024
2 parents 99c5d24 + d4f980f commit 9a4be79
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
name: Lint

on: [push]
on:
push:
tags:
# Full version
- "[0-9]+.[0-9]+.[0-9]+"
# Prerelease version
- "[0-9]+.[0-9]+.[0-9]+-*"

pull_request:
branches:
# Trigger on pull requests into main
- main
types: [ opened, synchronize ]

permissions:
contents: read
Expand Down

0 comments on commit 9a4be79

Please sign in to comment.