Update meta #35428
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
name: Update meta | |
on: | |
schedule: | |
- cron: '0 * * * *' # every hour | |
env: | |
TZ: Asia/Hong_Kong | |
FORCE_COLOR: 1 | |
EARTHLY_STRICT: "true" | |
EARTHLY_REMOTE_CACHE: "ghcr.io/giffon/charleywong_cache:master_devcontainer_workspace" | |
jobs: | |
job: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
ref: meta | |
fetch-depth: 0 | |
- uses: earthly/actions-setup@v1 | |
with: | |
version: "0.7.11" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create .envrc | |
run: | | |
cat > .envrc <<EOT | |
export FACEBOOK_TOKEN="$FACEBOOK_TOKEN" | |
EOT | |
env: | |
FACEBOOK_TOKEN: ${{ secrets.FACEBOOK_TOKEN }} | |
- run: earthly +syncFacebook | |
env: | |
EARTHLY_SECRET_FILES: envrc=.envrc | |
- run: earthly +git.js | |
- name: Import gpg key | |
run: | | |
echo "${#CBCA760DC1170A9B}" | |
echo "$CBCA760DC1170A9B" | gpg --import | |
env: | |
CBCA760DC1170A9B: ${{ secrets.CBCA760DC1170A9B }} | |
- run: node git.js rebase-commit-push "Charley Wong's bot <charleywong-bot@giffon.io>" "CBCA760DC1170A9B!" "https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/giffon/charleywong.git" meta | |
env: | |
GITHUB_ACTOR: ${{ secrets.GITHUB_ACTOR }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FACEBOOK_TOKEN: ${{ secrets.FACEBOOK_TOKEN }} |