Skip to content

test posts with more hashtags #24

test posts with more hashtags

test posts with more hashtags #24

Workflow file for this run

name: Post New Jobs
on:
push:
branches:
- main
jobs:
jobs-poster:
runs-on: ubuntu-latest
name: Run Jobs Poster
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- id: updater
name: Job Updater
uses: crd477/jobs-updater@main
with:
filename: "_data/jobs.yml"
# Fields to include (all but url will have title before)
keys: "name,location,url"
# Field to determine job uniqueness
unique: "url"
# hashtags to include
hashtag: "#RSEng,#ResearchSoftware"
deploy: true
test: false
# Also deploy to BlueSky (all secrets required in repository secrets)
bluesky_deploy: true
bluesky_password: ${{ secrets.BLUESKY_PASSWORD }}
bluesky_email: ${{ secrets.BLUESKY_EMAIL }}
- run: echo ${{ steps.updater.outputs.fields }}
name: Show Fields Used
shell: bash
- run: echo ${{ steps.updater.outputs.matrix }}
name: Show New Jobs
shell: bash