Skip to content

Pull Talawa Mobile Changes #3

Pull Talawa Mobile Changes

Pull Talawa Mobile Changes #3

name: Pull Talawa Mobile Changes
on:
schedule:
- cron: '0 0 * * 0' # Runs every Sunday at midnight
workflow_dispatch:
jobs:
pull:
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: 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 }}