{"id":22844,"date":"2025-11-08T18:41:59","date_gmt":"2025-11-08T18:41:59","guid":{"rendered":"https:\/\/pokecon.jp\/job\/?p=22844"},"modified":"2025-11-08T18:41:59","modified_gmt":"2025-11-08T18:41:59","slug":"actions-pull_request_target-and-environment-branch-protections-changes","status":"publish","type":"post","link":"https:\/\/pokecon.jp\/job\/22844\/","title":{"rendered":"Actions pull_request_target and environment branch protections changes"},"content":{"rendered":"\n<\/p>\n<div>\n<p>GitHub is updating how GitHub Actions\u2019 <code>pull_request_target<\/code> and environment branch protection rules are evaluated for pull-request-related events.<\/p>\n<p>These changes will take effect on 12\/8\/2025. They aim to reduce security critical edge cases in how these events operate on user-controlled branches that may result in unexpected execution of user-supplied workflow code or execution with environment secrets.<\/p>\n<h3 id=\"what-is-changing\"><a target=\"_blank\" class=\"heading-link\" href=\"#what-is-changing\">What is changing?<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"\/><\/a><\/h3>\n<p>The <code>pull_request_target<\/code> event now always uses the default branch for workflow source and reference:<\/p>\n<ul>\n<li>The workflow file and checkout commit will always be taken from the repository\u2019s default branch, regardless of the pull request\u2019s base branch. This prevents outdated\u2014and potentially vulnerable\u2014workflows on other branches within the repository from being executed in these events.<\/li>\n<li><code>GITHUB_REF<\/code> for <code>pull_request_target<\/code> will resolve to the default branch, and <code>GITHUB_SHA<\/code> will point to the latest commit on that branch. This aligns ref semantics with the security model and closes a known class of vulnerabilities where untrusted names or branches could influence evaluation.<\/li>\n<\/ul>\n<p>Previously, any branch within the parent repository set as the base branch of a pull request could have been used as the source of the executed workflow (<code>GITHUB_REF<\/code>\/<code>GITHUB_SHA<\/code>) and could result in the execution of outdated workflows. Historically, this behavior has led to the exploitation of outdated workflows that contained vulnerabilities in <code>pull_request_target<\/code> workflows that were presumed to be remediated since they were fixed in the default branch. This change will ensure only the default branch of the repository can be used as the workflow source that is executed for these events, enabling remediation of vulnerabilities in <code>pull_request_target<\/code> workflows in a way that better aligns with developers\u2019 expectations on vulnerability remediation and without the need to update all outdated branches in the repository.<\/p>\n<p>While this change helps enable the remediation of vulnerabilities in <code>pull_request_target<\/code> workflows in a repository, it is important to note that the use of <code>pull_request_target<\/code> events in combination with pull requests from forks has an increased risk. <code>pull_request_target<\/code> events execute based on user-supplied pull requests, which can come from external forks, and are executed with access to action secrets. Given this attack surface, care should be taken to avoid <a target=\"_blank\" href=\"https:\/\/securitylab.github.com\/resources\/github-actions-preventing-pwn-requests\/\">action workflow vulnerabilities<\/a> and to ensure untrusted code or input is not being used in a way that could influence execution. GitHub\u2019s code scanning with CodeQL can be used to <a target=\"_blank\" href=\"https:\/\/github.blog\/changelog\/2025-04-22-github-actions-workflow-security-analysis-with-codeql-is-now-generally-available\/\">identify vulnerabilities in action workflows<\/a> and is free for all public repositories.<\/p>\n<p>Another change is that environment branch protection rules for pull request events evaluate against the executing reference:<\/p>\n<ul>\n<li>To prevent unintended access to environment secrets during pull request workflows, environment branch protection rules will evaluate against the execution reference (<code>GITHUB_REF<\/code>), not the pull request head (<code>HEAD_REF<\/code>).<\/li>\n<li>For <code>pull_request<\/code>, <code>pull_request_review<\/code>, and <code>pull_request_review_comment<\/code>, environment rules evaluate against <code>refs\/pull\/number\/merge<\/code>. This matches the merge commit context those events use during execution.<\/li>\n<li>For <code>pull_request_target<\/code>, environment rules evaluate against the default branch. This is consistent with the updated <code>GITHUB_REF<\/code> and ensures policy checks occur against a trusted ref.<\/li>\n<\/ul>\n<h3 id=\"breaking-changes-and-impact\"><a target=\"_blank\" class=\"heading-link\" href=\"#breaking-changes-and-impact\">Breaking changes and impact<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"\/><\/a><\/h3>\n<p>Workflows that rely on environment branch protection rules with pull request triggers may stop matching previous branch patterns because evaluation now occurs on <code>refs\/pull\/number\/merge<\/code> for <code>pull_request<\/code> family events and on the default branch for <code>pull_request_target<\/code>. Update environment branch filters accordingly.<\/p>\n<h3 id=\"what-you-should-do\"><a target=\"_blank\" class=\"heading-link\" href=\"#what-you-should-do\">What you should do<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"\/><\/a><\/h3>\n<p>Assess your usage of <code>pull_request_target<\/code> and use it only when necessary:<\/p>\n<ul>\n<li>Ensure user-controlled input or code cannot influence execution in a way that runs untrusted code.<\/li>\n<li>If your workflow does not require elevated permissions or access to secrets, use <code>pull_request<\/code> instead.<\/li>\n<li>Restrict permissions granted to these workflows. Configure the default token <a target=\"_blank\" href=\"https:\/\/docs.github.com\/actions\/security-guides\/automatic-token-authentication#modifying-the-permissions-for-the-github_token.\">permissions<\/a> to read-only or apply least-privilege settings in the workflow.<\/li>\n<li>Enable code scanning to have <a target=\"_blank\" href=\"https:\/\/docs.github.com\/code-security\/code-scanning\/automatically-scanning-your-code-for-vulnerabilities-and-errors\/about-code-scanning\">CodeQL<\/a> scan your action workflows for common vulnerabilities.<\/li>\n<\/ul>\n<p>If your workflows use environments with branch protection rules and are triggered by pull request events:<\/p>\n<ul>\n<li>Update environment branch filters for <code>pull_request<\/code>, add patterns like <code>refs\/pull\/number\/merge<\/code>. For <code>pull_request_target<\/code>, add the repository\u2019s default branch.<\/li>\n<li>Consider alternative workflow triggers to continue using your existing branch protection rules or alternative branch protection rules to continue using your existing workflow triggers.<\/li>\n<li>As a last resort, disable environment branch protection rules used by pull request jobs, recognizing the trade-off in secret exposure risk.<\/li>\n<\/ul>\n<h3 id=\"how-to-give-feedback\"><a target=\"_blank\" class=\"heading-link\" href=\"#how-to-give-feedback\">How to give feedback<span class=\"heading-hash pl-2 text-italic text-bold\" aria-hidden=\"true\"\/><\/a><\/h3>\n<p>If you have any feedback or questions, feel free to drop a comment in our <a target=\"_blank\" href=\"https:\/\/github.com\/orgs\/community\/discussions\/179107\">Community discussion<\/a>.<\/p>\n<\/p><\/div>\n\n<br \/><a href=\"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/\">\u5143\u306e\u8a18\u4e8b\u3092\u78ba\u8a8d\u3059\u308b <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"GitHub is updating how GitHub Actions\u2019 pull_request_target and environment branch protection rules are evaluat [&hellip;]","protected":false},"author":1,"featured_media":22845,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-22844","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hatena-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Actions pull_request_target and environment branch protections changes - \u30dd\u30b1\u30b3\u30f3<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Actions pull_request_target and environment branch protections changes - \u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"og:description\" content=\"GitHub is updating how GitHub Actions\u2019 pull_request_target and environment branch protection rules are evaluat [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/\" \/>\n<meta property=\"og:site_name\" content=\"\u30dd\u30b1\u30b3\u30f3\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-08T18:41:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/11\/social-v3-improvements.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"631\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"info@pokecon.jp\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"info@pokecon.jp\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/22844\\\/\"},\"author\":{\"name\":\"info@pokecon.jp\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"headline\":\"Actions pull_request_target and environment branch protections changes\",\"datePublished\":\"2025-11-08T18:41:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/22844\\\/\"},\"wordCount\":689,\"image\":{\"@id\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/social-v3-improvements.jpg\",\"articleSection\":[\"\u306f\u3066\u306a\u30d6\u30ed\u30b0\"],\"inLanguage\":\"ja\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/22844\\\/\",\"url\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/\",\"name\":\"Actions pull_request_target and environment branch protections changes - \u30dd\u30b1\u30b3\u30f3\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/social-v3-improvements.jpg\",\"datePublished\":\"2025-11-08T18:41:59+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/social-v3-improvements.jpg\",\"contentUrl\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/social-v3-improvements.jpg\",\"width\":1200,\"height\":631},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/github.blog\\\/changelog\\\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Actions pull_request_target and environment branch protections changes\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#website\",\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/\",\"name\":\"\u30dd\u30b1\u30b3\u30f3\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/#\\\/schema\\\/person\\\/16c9f07b1ba984d165d9aee259bda997\",\"name\":\"info@pokecon.jp\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g\",\"caption\":\"info@pokecon.jp\"},\"url\":\"https:\\\/\\\/pokecon.jp\\\/job\\\/author\\\/infopokecon-jp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Actions pull_request_target and environment branch protections changes - \u30dd\u30b1\u30b3\u30f3","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:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/","og_locale":"ja_JP","og_type":"article","og_title":"Actions pull_request_target and environment branch protections changes - \u30dd\u30b1\u30b3\u30f3","og_description":"GitHub is updating how GitHub Actions\u2019 pull_request_target and environment branch protection rules are evaluat [&hellip;]","og_url":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/","og_site_name":"\u30dd\u30b1\u30b3\u30f3","article_published_time":"2025-11-08T18:41:59+00:00","og_image":[{"width":1200,"height":631,"url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/11\/social-v3-improvements.jpg","type":"image\/jpeg"}],"author":"info@pokecon.jp","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"info@pokecon.jp","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"4\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/#article","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/22844\/"},"author":{"name":"info@pokecon.jp","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"headline":"Actions pull_request_target and environment branch protections changes","datePublished":"2025-11-08T18:41:59+00:00","mainEntityOfPage":{"@id":"https:\/\/pokecon.jp\/job\/22844\/"},"wordCount":689,"image":{"@id":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/11\/social-v3-improvements.jpg","articleSection":["\u306f\u3066\u306a\u30d6\u30ed\u30b0"],"inLanguage":"ja"},{"@type":"WebPage","@id":"https:\/\/pokecon.jp\/job\/22844\/","url":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/","name":"Actions pull_request_target and environment branch protections changes - \u30dd\u30b1\u30b3\u30f3","isPartOf":{"@id":"https:\/\/pokecon.jp\/job\/#website"},"primaryImageOfPage":{"@id":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/#primaryimage"},"image":{"@id":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/#primaryimage"},"thumbnailUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/11\/social-v3-improvements.jpg","datePublished":"2025-11-08T18:41:59+00:00","author":{"@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997"},"breadcrumb":{"@id":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/#primaryimage","url":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/11\/social-v3-improvements.jpg","contentUrl":"https:\/\/pokecon.jp\/job\/wp-content\/uploads\/2025\/11\/social-v3-improvements.jpg","width":1200,"height":631},{"@type":"BreadcrumbList","@id":"https:\/\/github.blog\/changelog\/2025-11-07-actions-pull_request_target-and-environment-branch-protections-changes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/pokecon.jp\/job\/"},{"@type":"ListItem","position":2,"name":"Actions pull_request_target and environment branch protections changes"}]},{"@type":"WebSite","@id":"https:\/\/pokecon.jp\/job\/#website","url":"https:\/\/pokecon.jp\/job\/","name":"\u30dd\u30b1\u30b3\u30f3","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pokecon.jp\/job\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/pokecon.jp\/job\/#\/schema\/person\/16c9f07b1ba984d165d9aee259bda997","name":"info@pokecon.jp","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2b0549cd9f7907c092ca5fbb283baf72337f235726e4b46fa39ec0b701ac2fe2?s=96&d=wavatar&r=g","caption":"info@pokecon.jp"},"url":"https:\/\/pokecon.jp\/job\/author\/infopokecon-jp\/"}]}},"_links":{"self":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/22844","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/comments?post=22844"}],"version-history":[{"count":1,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/22844\/revisions"}],"predecessor-version":[{"id":22846,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/posts\/22844\/revisions\/22846"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media\/22845"}],"wp:attachment":[{"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/media?parent=22844"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/categories?post=22844"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pokecon.jp\/job\/wp-json\/wp\/v2\/tags?post=22844"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}