{"id":4755,"date":"2019-11-27T16:16:07","date_gmt":"2019-11-27T15:16:07","guid":{"rendered":"https:\/\/whiteduck.de\/?p=4755"},"modified":"2022-09-14T09:51:21","modified_gmt":"2022-09-14T07:51:21","slug":"github-actions-fully-integrated-and-shareable","status":"publish","type":"post","link":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/","title":{"rendered":"GitHub Actions &#8211; fully integrated and shareable"},"content":{"rendered":"<h1>GitHub Actions &#8211; fully integrated and shareable<\/h1>\n<p>GitHub Actions are around for some time now. Many have heard about them but not everyone was able to play with them as they were in private beta. After some months this has finally changed. GitHub Actions are now GA (General Availability) and everyone can use them.<\/p>\n<h2>But what exactly are GitHub Actions and what can I do with them?<\/h2>\n<p>Actions is a CI\/CD (Continuous Integration \/ Continuous Delivery) platform by GitHub. Actions is fully integrated with the existing GitHub features like code hosting, project management and documentation.<\/p>\n<p>To use GitHub Actions we need to create a pipeline called Workflow. A Workflow is a manifest written in YAML which allows you to version and store them within your project repository. It&#8217;s also possible to define multiple Workflows within one repository.<\/p>\n<p>Because you like to use Workflow to automate your processes it needs to trigger based on events. A big advantage of GitHub Actions is that you can trigger Workflows with nearly every event. You know events like commit, merge, pull request, but you can now also trigger your Workflows on a Wiki update, an added Label, after a Milestone close or an edited Pull request. Nearly anything is possible!<\/p>\n<p>As mentioned above a Workflow contains multiple parts:<\/p>\n<h3>Step<\/h3>\n<p>A step is the smallest instance in a Workflow. It contains out of one or multiple lines of commands.<\/p>\n<h3 class=\"rich-text editor-rich-text__editable block-editor-rich-text__editable is-selected\" role=\"textbox\" contenteditable=\"true\" aria-multiline=\"true\" aria-label=\"Schreib eine \u00dcberschrift\u2026\">Action<\/h3>\n<p>Actions are like Steps but sharable. Because of this they can be more complex and can be used for generic tasks like secret management or init tasks.<\/p>\n<h3>Jobs<\/h3>\n<p>One or multiple Steps and Actions can be combined in Jobs. The job also defines the sequence in which the jobs should be processed on which Runner.<\/p>\n<h3>Workflow<\/h3>\n<p>As already mentioned above, a Workflow is the biggest instance of GitHub Actions. It contains one or multiple Jobs as well as the trigger definition.<\/p>\n<p>Let me follow up on Actions &#8211; the reusable and sharable &#8220;Steps&#8221;. To make them even more useful GitHub introduced the GitHub Marketplace. The Marketplace can be used to search for existing Actions as well as publish your Actions to share them with others.<\/p>\n<p>\u00a0<\/p>\n<p>You can access the GitHub Marketspace <a href=\"https:\/\/github.com\/marketplace\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/p>\n<p>The definition of your Workflow is one part, the other is the actual compute needed to run them. With GitHub Actions you have two different options:<\/p>\n<h3 class=\"rich-text editor-rich-text__editable block-editor-rich-text__editable is-selected\" role=\"textbox\" contenteditable=\"true\" aria-multiline=\"true\" aria-label=\"Schreib eine \u00dcberschrift\u2026\">GitHub-hosted Runner<\/h3>\n<p>The hosted Runners are the fastest and easiest option to get started. You have access to Linux, Windows and Mac Runners. Based on your GitHub plan you also have some limitations you have to live with. For the free plan, those are 20 concurrent jobs and 5 concurrent macOS jobs. Besides the plan limits there are also the following hard limits:<\/p>\n<ul>\n<li>20 concurrent Workflows per repository<\/li>\n<li>1000 API requests per repository and hour<\/li>\n<li>6h runtime limit for Workflows<\/li>\n<\/ul>\n<p>Further details about the runner itself as well as the installed software are available <a href=\"https:\/\/docs.github.com\/en\/free-pro-team@latest\/actions\/reference\/specifications-for-github-hosted-runners#supported-software\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a> and <a href=\"https:\/\/help.github.com\/en\/actions\/automating-your-workflow-with-github-actions\/virtual-environments-for-github-hosted-runners\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"here (\u00f6ffnet in neuem Tab)\">here<\/a>.<\/p>\n<h3 class=\"rich-text editor-rich-text__editable block-editor-rich-text__editable is-selected\" role=\"textbox\" contenteditable=\"true\" aria-multiline=\"true\" aria-label=\"Schreib eine \u00dcberschrift\u2026\">Self-hosted Runner<\/h3>\n<p>Besides the hosted Runner, you also have the option to use your own compute as a Runner. Self-hosted Runners are still in Beta. As soon as they are released the allow much more flexibility without any limits. Supported Operating Systems are:<\/p>\n<ul>\n<li>Ubuntu<\/li>\n<li>RedHat Enterprise Linux<\/li>\n<li>CentOS<\/li>\n<li>Fedora<\/li>\n<li>Mint<\/li>\n<li>openSUSE<\/li>\n<li>SLES<\/li>\n<li>Windows 7, 8.1, 10<\/li>\n<li>Windows Server 2016, 2019<\/li>\n<li>macOS<\/li>\n<\/ul>\n<h2 class=\"rich-text editor-rich-text__editable block-editor-rich-text__editable is-selected\" role=\"textbox\" contenteditable=\"true\" aria-multiline=\"true\" aria-label=\"Schreib eine \u00dcberschrift\u2026\">How to start?<\/h2>\n<p>This repository contains a ton of useful Workflow examples which are ready to use: <a href=\"https:\/\/github.com\/actions\/starter-workflows\/tree\/master\/ci\" target=\"_blank\" rel=\"noopener\">https:\/\/github.com\/actions\/starter-workflows\/tree\/master\/ci<\/a><\/p>\n<p>The below example is based on the Azure Workflow (you will find it in the linked repository). It&#8217;s chopped up so we can walk through the steps one by one.<\/p>\n\n\n<pre class=\"wp-block-code\"><code>on:\n  push:\n    branches:\n      - master<\/code><\/pre>\n\n\n\n<p>First of all, we define that this Workflow is only triggered by a push in the master branch. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>env:\n  AZURE_WEBAPP_NAME: your-app-name \n  AZURE_WEBAPP_PACKAGE_PATH: '.'     \n  NODE_VERSION: '10.x' <\/code><\/pre>\n\n\n\n<p>In this step, we define some global environment parameters which we use in later steps.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>jobs:\n  build-and-deploy:\n    name: Build and Deploy\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions\/checkout@master\n    - name: Use Node.js ${{ env.NODE_VERSION }}\n      uses: actions\/setup-node@v1\n      with:\n        node-version: ${{ env.NODE_VERSION }}<\/code><\/pre>\n\n\n\n<p>In the above step, we defined our first &#8220;build-and-deploy&#8221; job which calls two different Actions. The first one, to check out our code, the second one to set up the node environment.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>  - name: npm install, build, and test\n      run: |\n        # Build and test the project, then\n        # deploy to Azure Web App.\n        npm install\n        npm run build --if-present\n        npm run test --if-present\n    - name: 'Deploy to Azure WebApp'\n      uses: azure\/webapps-deploy@v1\n      with:\n        app-name: ${{ env.AZURE_WEBAPP_NAME }}\n        publish-profile: ${{ secrets.AZURE_WEBAPP_PUBLISH_PROFILE }}\n        package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}\n\n<\/code><\/pre>\n\n\n\n<p>In the last part we call a Step called &#8220;npm install, build, and test&#8221; followed by an Action to deploy our app to Azure WebApp.<\/p>\n\n\n\n<p>More details on GitHub Actions are available <a rel=\"noreferrer noopener\" href=\"https:\/\/help.github.com\/en\/actions\" target=\"_blank\">here<\/a>.<\/p>\n\n\n\n<p>Feel free to join our next <a href=\"https:\/\/whiteduck.de\/azure-rosenheim-meetup\/\" target=\"_blank\" rel=\"noreferrer noopener\">Azure Rosenheim Meetup<\/a> where we will provide a  detailed GitHub Actions 101 talk including demos. You can register <a rel=\"noreferrer noopener\" href=\"https:\/\/www.meetup.com\/Azure-Meetup-Rosenheim\/events\/266581727\/\" target=\"_blank\">here<\/a>. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>GitHub Actions &#8211; fully integrated and shareable GitHub Actions are around for some time now. Many have heard about them but not everyone was able to play with them as they were in private beta. After some months this has finally changed. GitHub Actions are now GA (General Availability) and everyone can use them. But <a href=\"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/\"> <\/p>\n<div style=\"color:#ff9900\">[&#8230;]<\/div>\n<p><\/a><\/p>\n","protected":false},"author":8,"featured_media":4761,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_tribe_events_control_status":"","_tribe_events_control_status_canceled_reason":"","_tribe_events_control_status_postponed_reason":"","_tribe_events_control_online":"","_tribe_events_control_online_url":"","footnotes":""},"categories":[],"tags":[211,212,117,213],"class_list":["post-4755","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","tag-actions","tag-cicd","tag-github","tag-pipelines"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>GitHub Actions - fully integrated and shareable - white duck<\/title>\n<meta name=\"description\" content=\"Read our blog post on GitHub Actions - fully integrated and shareable.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GitHub Actions - fully integrated and shareable - white duck\" \/>\n<meta property=\"og:description\" content=\"Read our blog post on GitHub Actions - fully integrated and shareable.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/\" \/>\n<meta property=\"og:site_name\" content=\"white duck\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/whiteduckgmbh\" \/>\n<meta property=\"article:published_time\" content=\"2019-11-27T15:16:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-14T07:51:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/whiteduck.de\/wp-content\/uploads\/github-actions-1024x404.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"404\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Nico Meisenzahl\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@whiteduck_gmbh\" \/>\n<meta name=\"twitter:site\" content=\"@whiteduck_gmbh\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nico Meisenzahl\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/\"},\"author\":{\"name\":\"Nico Meisenzahl\",\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/#\\\/schema\\\/person\\\/c26beb86db4a71e77e24854ed07eda69\"},\"headline\":\"GitHub Actions &#8211; fully integrated and shareable\",\"datePublished\":\"2019-11-27T15:16:07+00:00\",\"dateModified\":\"2022-09-14T07:51:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/\"},\"wordCount\":728,\"image\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/whiteduck.de\\\/wp-content\\\/uploads\\\/github-actions-1024x404.png\",\"keywords\":[\"Actions\",\"CICD\",\"GitHub\",\"Pipelines\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/\",\"url\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/\",\"name\":\"GitHub Actions - fully integrated and shareable - white duck\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/whiteduck.de\\\/wp-content\\\/uploads\\\/github-actions-1024x404.png\",\"datePublished\":\"2019-11-27T15:16:07+00:00\",\"dateModified\":\"2022-09-14T07:51:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/#\\\/schema\\\/person\\\/c26beb86db4a71e77e24854ed07eda69\"},\"description\":\"Read our blog post on GitHub Actions - fully integrated and shareable.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/#primaryimage\",\"url\":\"https:\\\/\\\/whiteduck.de\\\/wp-content\\\/uploads\\\/github-actions-1024x404.png\",\"contentUrl\":\"https:\\\/\\\/whiteduck.de\\\/wp-content\\\/uploads\\\/github-actions-1024x404.png\",\"width\":1024,\"height\":404},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/github-actions-fully-integrated-and-shareable\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Startseite\",\"item\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GitHub Actions &#8211; fully integrated and shareable\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/\",\"name\":\"white duck\",\"description\":\"Your Partner for Microsoft Azure &amp; AI\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/#\\\/schema\\\/person\\\/c26beb86db4a71e77e24854ed07eda69\",\"name\":\"Nico Meisenzahl\",\"description\":\"Nico Meisenzahl works as Senior Cloud &amp; DevOps Consultant at white duck. As an elected Microsoft MVP, Docker Community Leader and GitLab Hero, his current passion is for topics around Cloud-Native and Kubernetes. Nico is a frequent speaker at conferences, user group events and Meetups in Europe and the United States.\",\"sameAs\":[\"https:\\\/\\\/meisenzahl.org\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/nicomeisenzahl\\\/\"],\"url\":\"https:\\\/\\\/whiteduck.de\\\/en\\\/author\\\/nmeisenzahl\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"GitHub Actions - fully integrated and shareable - white duck","description":"Read our blog post on GitHub Actions - fully integrated and shareable.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/","og_locale":"en_US","og_type":"article","og_title":"GitHub Actions - fully integrated and shareable - white duck","og_description":"Read our blog post on GitHub Actions - fully integrated and shareable.","og_url":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/","og_site_name":"white duck","article_publisher":"https:\/\/www.facebook.com\/whiteduckgmbh","article_published_time":"2019-11-27T15:16:07+00:00","article_modified_time":"2022-09-14T07:51:21+00:00","og_image":[{"width":1024,"height":404,"url":"https:\/\/whiteduck.de\/wp-content\/uploads\/github-actions-1024x404.png","type":"image\/png"}],"author":"Nico Meisenzahl","twitter_card":"summary_large_image","twitter_creator":"@whiteduck_gmbh","twitter_site":"@whiteduck_gmbh","twitter_misc":{"Written by":"Nico Meisenzahl","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/#article","isPartOf":{"@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/"},"author":{"name":"Nico Meisenzahl","@id":"https:\/\/whiteduck.de\/en\/#\/schema\/person\/c26beb86db4a71e77e24854ed07eda69"},"headline":"GitHub Actions &#8211; fully integrated and shareable","datePublished":"2019-11-27T15:16:07+00:00","dateModified":"2022-09-14T07:51:21+00:00","mainEntityOfPage":{"@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/"},"wordCount":728,"image":{"@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/#primaryimage"},"thumbnailUrl":"https:\/\/whiteduck.de\/wp-content\/uploads\/github-actions-1024x404.png","keywords":["Actions","CICD","GitHub","Pipelines"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/","url":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/","name":"GitHub Actions - fully integrated and shareable - white duck","isPartOf":{"@id":"https:\/\/whiteduck.de\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/#primaryimage"},"image":{"@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/#primaryimage"},"thumbnailUrl":"https:\/\/whiteduck.de\/wp-content\/uploads\/github-actions-1024x404.png","datePublished":"2019-11-27T15:16:07+00:00","dateModified":"2022-09-14T07:51:21+00:00","author":{"@id":"https:\/\/whiteduck.de\/en\/#\/schema\/person\/c26beb86db4a71e77e24854ed07eda69"},"description":"Read our blog post on GitHub Actions - fully integrated and shareable.","breadcrumb":{"@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/#primaryimage","url":"https:\/\/whiteduck.de\/wp-content\/uploads\/github-actions-1024x404.png","contentUrl":"https:\/\/whiteduck.de\/wp-content\/uploads\/github-actions-1024x404.png","width":1024,"height":404},{"@type":"BreadcrumbList","@id":"https:\/\/whiteduck.de\/en\/github-actions-fully-integrated-and-shareable\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https:\/\/whiteduck.de\/en\/"},{"@type":"ListItem","position":2,"name":"GitHub Actions &#8211; fully integrated and shareable"}]},{"@type":"WebSite","@id":"https:\/\/whiteduck.de\/en\/#website","url":"https:\/\/whiteduck.de\/en\/","name":"white duck","description":"Your Partner for Microsoft Azure &amp; AI","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/whiteduck.de\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/whiteduck.de\/en\/#\/schema\/person\/c26beb86db4a71e77e24854ed07eda69","name":"Nico Meisenzahl","description":"Nico Meisenzahl works as Senior Cloud &amp; DevOps Consultant at white duck. As an elected Microsoft MVP, Docker Community Leader and GitLab Hero, his current passion is for topics around Cloud-Native and Kubernetes. Nico is a frequent speaker at conferences, user group events and Meetups in Europe and the United States.","sameAs":["https:\/\/meisenzahl.org","https:\/\/www.linkedin.com\/in\/nicomeisenzahl\/"],"url":"https:\/\/whiteduck.de\/en\/author\/nmeisenzahl\/"}]}},"_links":{"self":[{"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/posts\/4755","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/comments?post=4755"}],"version-history":[{"count":0,"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/posts\/4755\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/media\/4761"}],"wp:attachment":[{"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/media?parent=4755"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/categories?post=4755"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/whiteduck.de\/en\/wp-json\/wp\/v2\/tags?post=4755"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}