We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85c0e4d commit 733970eCopy full SHA for 733970e
.github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
1
+blank_issues_enabled: false
2
+contact_links:
3
+ - name: Ask a Question
4
+ url: https://github.com/mohit-nagaraj/VibeLayer/discussions
5
+ about: Please ask and answer questions here.
.github/workflows/build.yml
@@ -11,6 +11,11 @@ permissions:
11
12
jobs:
13
build:
14
+ if: |
15
+ !(
16
+ (github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]')) ||
17
+ (github.event_name == 'pull_request' && contains(github.event.pull_request.title, '[skip ci]'))
18
+ )
19
name: Build & Test (${{ matrix.os }})
20
runs-on: ${{ matrix.os }}
21
strategy:
0 commit comments