Skip to content

reference clean up

reference clean up #7

name: Create Staging link versions on ReadMe from non-main branches
on:
// when a PR is created in any branch except main that have made changes to the
// reference folder, run this workflow
push:

Check failure on line 6 in .github/workflows/reference-staging.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/reference-staging.yml

Invalid workflow file

You have an error in your yaml syntax on line 6
branches-ignore:
- main
jobs:
# ////////////////////////////////////////////////////////////////////////
# Pull Request
# ////////////////////////////////////////////////////////////////////////
# Create a new ReadMe Version
rdme-version:
runs-on: ubuntu-latest
steps:
- name: Check out repo 📚
uses: actions/checkout@v3
- name: Run `versions` command
uses: readmeio/rdme@v8
with:
rdme: versions:create ${{ github.event.number }} --fork={version-fork} --main={true|false} --beta={true|false} --deprecated={true|false} --hidden={true|false}
# Push branch content onto that ReadMe Version
rdme-docs:
runs-on: ubuntu-latest
steps:
- name: Check out repo 📚
uses: actions/checkout@v3
- name: Run `docs` command 🚀
uses: readmeio/rdme@v8
with:
rdme: docs ./reference --key=${{ secrets.README_API_KEY }} --version=${{ github.event.number }}
# PR Preview Deploy
# preview-deploy:
# name: Preview
# if: ${{ github.event_name == 'pull_request' }}
# uses: ./.github/workflows/marketing-site-build-and-upload.yaml
# with:
# service-account: gh-actions-cdn-deployer-dev@mixpanel-tools.iam.gserviceaccount.com
# asset-bucket-prefix: pr-${{ github.event.number }}
# html-bucket-prefix: pr-${{ github.event.number }}
# cdn-host: cdn-dev.mxpnl.com
# gcs-bucket: cdn-dev-mixpanel-com
# ignore-lint: 1
# preview-notify:
# name: Preview / Notify
# runs-on: ubuntu-20.04
# needs:
# - preview-deploy
# timeout-minutes: 15
# permissions:
# contents: read
# issues: write
# pull-requests: write
# steps:
# - uses: actions/checkout@v4
# with:
# sparse-checkout: |
# .github
# marketing-site
# # Build PR Comment
# - name: Build PR comment
# id: build-pr-comment
# uses: actions/github-script@v6
# with:
# result-encoding: string
# script: |
# return `
# # READMe Reference PR Preview
# :rocket: https://https://developer.mixpanel.com/v${{ github.event.number }}/reference/overview
# Last updated: ${new Date().toLocaleString("en-US", {timeZone: "America/Los_Angeles"})} PT from ${{github.sha}}
# `
# # Update PR Comment
# - uses: ./.github/actions/create-or-update-comment
# with:
# issue-number: ${{ github.event.number }}
# key: marketing-site-pr-preview
# body: ${{ steps.build-pr-comment.outputs.result }}