Weekly Updates #103
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/release.yml | |
name: Weekly Updates | |
on: | |
schedule: | |
- cron: '0 0 * * 2' | |
jobs: | |
update: | |
name: Pull latest from stanford profile | |
runs-on: ubuntu-latest | |
container: | |
image: pookmish/drupal8ci:latest | |
steps: | |
- uses: actions/checkout@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Back to Dev | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "CircleCI" | |
git pull https://github.com/SU-SWS/stanford_profile.git 9.x -X ours --no-edit | |
if [[ $(git diff origin/${CIRCLE_BRANCH} --name-only) ]]; then | |
DATE=`date +%Y-%m-%d` | |
git checkout -b ${DATE}-9.x | |
git push origin ${DATE}-9.x | |
gh pr create --title=${DATE} --base=9.x --body="Updates from stanford_profile" --assignee=pookmish,imonroe | |
fi |