Skip to content

Commit

Permalink
Merge pull request #883 from gautam-divyanshu/single_yaml
Browse files Browse the repository at this point in the history
same yaml to fetch the talawa api, admin, and mobile docs
  • Loading branch information
gautam-divyanshu authored Nov 7, 2024
2 parents 4e84ed9 + da939c1 commit ce8d2ec
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 37 deletions.
35 changes: 30 additions & 5 deletions .github/workflows/pull-latest-docs.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
name: Pull Talawa API and Admin Changes
name: Pull Talawa Changes

on:
schedule:
- cron: '0 0 * * 0'
- cron: '0 0 * * 0' # Runs every Sunday at midnight
workflow_dispatch:

jobs:
pull:
pull_talawa_mobile:
name: Pull Talawa Mobile Changes
runs-on: ubuntu-latest

steps:
- name: Checkout current repository
uses: actions/checkout@v2
Expand All @@ -17,7 +18,31 @@ jobs:
run: |
git config --global user.email "${{ env.email }}"
git config --global user.name "${{ github.actor }}"
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.3'
channel: 'stable'

- name: Run bash script to fetch Talawa mobile docs
run: bash .github/workflows/pull-talawa-mobile-docs.sh
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

pull_talawa_api_admin:
name: Pull Talawa API and Admin Changes
runs-on: ubuntu-latest

steps:
- name: Checkout current repository
uses: actions/checkout@v2

- name: Set up Git config
run: |
git config --global user.email "${{ env.email }}"
git config --global user.name "${{ github.actor }}"
- name: Run bash script for docs API
run: bash .github/workflows/pull-docs-api.sh
env:
Expand Down
32 changes: 0 additions & 32 deletions .github/workflows/pull-talawa-mobile-docs.yml

This file was deleted.

0 comments on commit ce8d2ec

Please sign in to comment.