Skip to content

Commit b56f450

Browse files
authored
Merge branch 'stage' into events-manual-grouping
2 parents fd6c504 + 1b7f630 commit b56f450

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/build-and-push-docker-image.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
steps:
1919
- name: Checkout repository
2020
uses: actions/checkout@v3
21+
with:
22+
ref: stage
2123

2224
- name: Login to GitHub registry
2325
uses: docker/login-action@v2
@@ -55,4 +57,5 @@ jobs:
5557
file: docker/Dockerfile.prod
5658
tags: ${{ steps.meta.outputs.tags }}
5759
labels: ${{ steps.meta.outputs.labels }}
58-
push: ${{ startsWith(github.ref, 'refs/tags/v') || endsWith(github.ref, '/stage') || endsWith(github.ref, '/prod') }}
60+
push: ${{ github.ref == 'refs/heads/stage' || github.ref == 'refs/heads/prod' || startsWith(github.ref, 'refs/tags/v') }}
61+
no-cache: true

src/typeDefs/project.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,12 @@ extend type Mutation {
238238
projectId: ID!
239239
): DateTime! @requireUserInWorkspace
240240
}
241+
242+
input EventsFilter {
243+
"""
244+
Search query string. Only alphanumeric characters, spaces, and some special characters are allowed.
245+
Max length: 100 characters
246+
"""
247+
search: String
248+
}
241249
`;

0 commit comments

Comments
 (0)