You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow uses `pull_request_target`, so will run against all PRs automatically (without approval), be careful with allowing any user-provided code to be run here
3
+
# Only selected Actions are allowed within this repository. Please refer to (https://github.com/nodejs/nodejs.org/settings/actions)
4
+
# for the full list of available actions. If you want to add a new one, please reach out a maintainer with Admin permissions.
5
+
# REVIEWERS, please always double-check security practices before merging a PR that contains Workflow changes!!
6
+
# AUTHORS, please only use actions with explicit SHA references, and avoid using `@master` or `@main` references or `@version` tags.
7
+
# MERGE QUEUE NOTE: This Workflow does not run on `merge_group` trigger, as this Workflow is not required for Merge Queue's
8
+
9
+
name: Sync Orama Cloud
10
+
11
+
on:
12
+
push:
13
+
branches:
14
+
- main
15
+
pull_request_target:
16
+
branches:
17
+
- main
18
+
types:
19
+
- labeled
20
+
21
+
permissions:
22
+
contents: read
23
+
24
+
jobs:
25
+
sync-orama-cloud:
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
0 commit comments