Skip to content
This repository has been archived by the owner on Oct 14, 2022. It is now read-only.

Commit

Permalink
chore(sync): Synced file(s) with futureleadersupc/waw-frontend-vue
Browse files Browse the repository at this point in the history
  • Loading branch information
dalbitresb12-bot committed May 18, 2022
1 parent 7947a9e commit 7e25e8a
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 0 deletions.
61 changes: 61 additions & 0 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
name: sync

on:
push:
branches:
- main
paths:
- server/*
- .github/workflows/sync.yml

jobs:
file-sync:
name: 'run file sync'
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.sync-output.outputs.pull_request_urls }}
steps:
- name: Checkout current repository
uses: actions/checkout@v3
- name: Sync files to all repositories
id: sync-output
uses: BetaHuhn/repo-file-sync-action@v1
with:
GH_PAT: ${{ secrets.BOT_PAT }}
PR_LABELS: |
chore
scope: sync
ASSIGNEES: dalbitresb12-bot
REVIEWERS: ${{ github.actor }}
BRANCH_PREFIX: chore/file-sync
COMMIT_PREFIX: 'chore(sync): '
COMMIT_EACH_FILE: false
enable-automerge:
name: 'enable auto-merge'
needs: [file-sync]
runs-on: ubuntu-latest
strategy:
matrix:
url: ${{ fromJson(needs.file-sync.outputs.matrix) }}
steps:
- name: Extract pull request info
id: pr-info
env:
CURRENT_URL: ${{ matrix.url }}
shell: python
run: |
import os, re
url = os.environ["CURRENT_URL"]
match = re.fullmatch("^https:\/\/github.com\/(.+)\/(.+)\/pull\/(\d+)$", url)
if (match is None):
print(f"Unable to find a match in {url}")
sys.exit(1)
print(f"::set-output name=repository::{match[1]}/{match[2]}")
print(f"::set-output name=number::{match[3]}")
- name: Enable auto-merge for created pull requests
uses: peter-evans/enable-pull-request-automerge@v2
with:
token: ${{ secrets.BOT_PAT }}
repository: ${{ steps.pr-info.outputs.repository }}
pull-request-number: ${{ steps.pr-info.outputs.number }}
merge-method: merge
53 changes: 53 additions & 0 deletions server/db.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" },
{ "id": 2, "title": "another post", "author": "dalbitresb12" }
],
"comments": [{ "id": 1, "body": "some comment", "postId": 1 }],
"profile": { "name": "typicode" },

"jobOffers": [
{
"id": 1,
"title": "Remote Software Engineer",
"description": "This is a unique role that offers broad exposure to the systems and data that span our entire business. We are eager to find underrepresented candidates who are early in their career and are looking for a position where they can assume responsibility for core systems and want to work on projects which have immediate and significant business impact.",
"salaryRange": "$115k-$117k",
"published": true
},
{
"id": 2,
"title": "Remote Senior Embedded Android Specialist",
"description": "Hinge Health is building a digital MSK clinic and is looking for experienced embedded developers to improve our computer vision SDK on Android. You will be building a system that uses computer vision to analyze patient movement to help diagnose, treat and prevent MSK conditions.",
"salaryRange": "$145k-$157k",
"published": true
},
{
"id": 3,
"title": "Remote Lead UX Researcher Motion",
"description": "We’re looking for a mission-driven individual to join us in creating engaging and effective experiences to empower successful behavioral health change. Thought Leader: This person will be a thought leader and key contributor within the Design and UX and R+D teams.",
"salaryRange": "$145k-$160k",
"published": false
},
{
"id": 4,
"title": "Remote Software Engineer Privacy",
"description": "How you will help At HealthVerity, privacy is at the forefront of our platform. As a Software Engineer on the Privacy Engineering team, you will support and extend the core technologies that preserve the privacy of patient and consumer data across a number of HealthVerity’s products and services. You will improve the core algorithms that power our patient de-identification and linkage technology. ",
"salaryRange": "$150k-$160k",
"published": false
},
{
"id": 5,
"title": "Remote Software Engineer Data Transmission",
"description": "How you will help As a Software Engineer on the Data Transmission Engineering team, you will develop and maintain the services and tools powering HealthVerity’s data pipelines. This includes the ingestion of raw data into our petabyte sized warehouse -- all the way to the delivery of cleaned, de-identified and linked data to our clients. ",
"salaryRange": "$145k-$147k",
"published": true
},
{
"id": 6,
"title": "Remote Full Stack Software Engineer CPT",
"description": " You will support the engineering team and implement automation to fortify and expand our current technical processes. You will develop a strong technical understanding of the components of our system and work with internal resources to solve any challenges that may arise.",
"salaryRange": "$135k-$157k",
"published": false
}
]
}
3 changes: 3 additions & 0 deletions server/routes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"/api/v1/*": "/$1"
}

0 comments on commit 7e25e8a

Please sign in to comment.