Skip to content

Add "Reels" to suggestion texts #49

Add "Reels" to suggestion texts

Add "Reels" to suggestion texts #49

Workflow file for this run

name: Mirror to Gitlab
on:
workflow_dispatch:
push:
branches: [master]
jobs:
mirror:
name: Mirror
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup SSH
env:
GITLAB_PUSH_KEY: ${{ secrets.GITLAB_PUSH_KEY }}
run: |
mkdir -p ~/.ssh/
chmod 700 ~/.ssh/
echo "$GITLAB_PUSH_KEY" > ~/.ssh/push_key
chmod 400 ~/.ssh/push_key
- name: Push to Gitlab
env:
GIT_SSH_COMMAND: ssh -v -i ~/.ssh/push_key -o IdentitiesOnly=yes -o StrictHostKeyChecking=no
run: git push --force --prune git@gitlab.com:mgziminsky/FacebookTrackingRemoval.git master refs/tags/*