Skip to content

Update salesforce doc. (#517) #6

Update salesforce doc. (#517)

Update salesforce doc. (#517) #6

Workflow file for this run

name: Sync OpenAPI Specs # can be customized
on: # additional custom triggers can be configured, examples below
workflow_dispatch: # manual dispatch
push:
branches:
- main # on push to main
schedule:
- cron: '0 3 * * *' # everyday at 3:00 AM UTC
permissions:
contents: write
pull-requests: write
jobs:
update-from-source:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Update API with Fern
uses: fern-api/sync-openapi@v2
with:
update_from_source: true
token: ${{ secrets.GITHUB_TOKEN }}
branch: 'update-api'
auto_merge: false # you MUST use auto_merge: true with branch: main
add_timestamp: true