We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d0af81 commit faaf875Copy full SHA for faaf875
.github/workflows/sync-orama.yml
@@ -26,6 +26,11 @@ jobs:
26
name: Sync Orama Cloud
27
runs-on: ubuntu-latest
28
29
+ # This Job should run either on non-`pull_request_target` events,
30
+ # or `pull_request_target` event with a `labeled` action with a label named `github_actions:pull-request`
31
+ # since we want to run Website Builds on all these occasions. As this allows us to be certain the that builds are passing
32
+ if: github.event_name != 'pull_request_target' || github.event.label.name == 'github_actions:pull-request'
33
+
34
steps:
35
- name: Git Checkout
36
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
0 commit comments